@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    margin: 0 auto;
    max-width: 1330px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 6%;
    z-index: 1000;
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

header .logo {
    color: black;
    cursor: pointer;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover .logo,
.dropdown>a:hover,
.dropdown:hover>a::after {
    color: #000;
}

/* Toggle */
.toggle a {
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

/* Showcase */
.showcase-header {
    background: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 10px 6%;
    gap: 50px;
}

.showcase img {
    height: 600px;
    flex: 1 0 0;
    border-radius: 30px;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 10px 0;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #000;
    color: #fff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.showcase-inicio {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    margin: 0;
    /* Remove espaçamentos verticais */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.welcome-section {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2CA677;
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.welcome-section .logo-img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

/* Botões */
.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: #2CA677;
    color: white;
}

.btn-login:hover {
    background-color: #1b5e44;
    transform: translateY(-2px);
}

.btn-criarconta {
    background-color: transparent;
    color: #1b5e44;
    border: 2px solid #1b5e44;
}

.btn-criarconta:hover {
    background-color: #2CA677;
    color: white;
    transform: translateY(-2px);
}

/* Imagem lateral */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.image-container img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .welcome-section {
        padding: 40px 30px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .books-section {
        padding: 30px 20px;
    }

    .imagem-medvet {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .button-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 200px;
    }
}


.showcase-funcionalidades {
    max-height: 100vh;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 14px;
    font-weight: 800;
    color: #666;
    margin-top: 70px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.cta-buttons {
    margin: 50px 0 100px;
    text-align: center;
}

.cta-section {
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.container-cta {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px;
}

.content {
    padding-right: 40px;
}

.title {
    font-size: 54px;
    font-weight: 700;
    color: #2CA677;
    margin-bottom: 24px;
    line-height: 1.1;
}

.description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}


/* Imagem lateral */
.image-ilustracao {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-ilustracao img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}


footer {
    text-align: center;
    padding: 20px 0 60px;
    font-size: 14px;
    color: #555555;
}

/* Heading styles */
.h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Playfair Display', Georgia, serif;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content {
        padding-right: 0;
        order: 2;
    }

    .illustration {
        order: 1;
    }

    .title {
        font-size: 48px;
    }

    .description {
        max-width: none;
    }

    .buttons {
        justify-content: center;
    }

    .character {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}