* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: roboto, sans-serif;
}
/* Estilo base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #006837;
    padding: 15px 20px;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 50px;
}

/* Ícone do menu hamburguer */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Menu padrão (desktop) */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #7ac74d;
}

/* Responsivo: até 768px */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #006837;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out;
    }

    .menu.active {
        max-height: 500px; /* suficiente para os itens aparecerem */
        transition: max-height 0.4s ease-in;
    }

    .menu li {
        padding: 15px;
        border-top: 1px solid #ffffff33;
        text-align: center;
    }

    .menu li a {
        font-size: 18px;
    }
}



#carousel-imagens {
    width: 100%;
    max-width: 1280px;
    height: 30vw;
    max-height: 420px;
    margin: auto;
}
#carousel-imagens img {
    width: 100%;
    max-width: 100%;
    height: 40vw;
    max-height: 420px;
    border-radius: 10px;
    object-fit: cover;
}
@media (max-width: 768px) {
    #carousel-imagens {
        max-height: 250px;
    }
    #carousel-imagens img {
        height: 50vw;
        max-height: 250px;
    }
}
 .navigation label {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            border-radius: 50%;
            background: #f7f3f3;
            cursor: pointer;
        }

        .telemedicina-section {
            padding: 20px;
            background-color: #a6b9ca;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 20px 0;
        }

        .telemedicina-section h2 {
            margin-top: 0;
            color: #007134;
            font-size: 45px;
            margin-bottom: 24px;
            display: block;
            text-align: center;
            font-weight: 90;
            line-height: 1.2;
            text-align: center;
            text-transform: uppercase;
        }

        .telemedicina-section p {
            margin-bottom: 0;
            color: #071f50;
            font-size: 20px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
}
.content img {
    max-width: 100%;
    height: auto;
}
.content-text {
    flex: 1;
    padding: 20px;
}
.whatsapp-button {
    padding: 20px 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-button img {
    margin-right: 10px;
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}
/* ANIMAÇÕES */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SEÇÕES GERAIS */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

section:nth-child(even) {
    background-color: #f9f9f9;
}

h2 {
    color: #008060;
    margin-bottom: 20px;
}

p, li {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* BENEFÍCIOS */
.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: #7ba88e;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 250px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card i {
    font-size: 36px;
    color: #008060;
    margin-bottom: 15px;
}

/* COMO UTILIZAR */
.how-section ol {
    list-style: decimal inside;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* VÍDEO */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .benefits-cards {
        flex-direction: column;
        align-items: center;
    }
}
footer {
    background-color: #007b5f;
    color: white;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

.footer div {
    margin: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */

