/* Autocuidado Page Styles */

.hero-autocuidado {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-autocuidado .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
    color:rgb(94, 87, 87)
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #555;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background: #d1d1d1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0b4e23;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 2rem;
}

.servico-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.servico-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-card:hover .servico-imagem img {
    transform: scale(1.05);
}

.servico-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #0b4e23, #1a7a3e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.servico-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.servico-content h3 {
    font-size: 1.2rem;
    min-height: 2.8rem;
    color: #0b4e23;
    margin-bottom: 0.75rem;
    padding-bottom: 0;
    font-weight: 700;
}

.servico-content p {
    color: #555;
    padding-top: 0;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-bottom: 0;
    flex: 1;
    font-size: 0.95rem;
}

.servico-beneficios {
    margin-bottom: 1.5rem;
}

.servico-beneficios h4 {
    font-size: 1.1rem;
    color: #0c421f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.servico-beneficios ul {
    list-style: none;
    padding: 0;
}

.servico-beneficios li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.servico-beneficios li:before {
    content: "✓";
    color: #0b4e23;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.servico-duracao {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.servico-preco {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0b4e23;
    margin-top: auto;
    margin-bottom: 0.6rem;
}

.btn-agendamento {
    display: block;
    background: linear-gradient(135deg, #0b4e23 0%, #148b40 100%);
    color: white;
    padding: 0.85rem 1rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    margin: 1rem -1.5rem -1.5rem;
    width: calc(100% + 3rem);
}

.btn-agendamento:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(8, 20, 12, 0.3);
}

/* Benefícios Gerais Section */
.beneficios-gerais {
    padding: 5rem 0;
    background: white;
}

.beneficios-gerais h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0b4e23;
    margin-bottom: 4rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #084124, #1a7a3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(11, 78, 35, 0.3);
}


.beneficio-icon svg {
    filter: brightness(44);
}

.beneficio-item h3 {
    font-size: 1.3rem;
    color: #0b4e23;
    margin-bottom: 5rem;
    font-weight: 600;
}

.beneficio-item p {
    color: #1a0f0f;
    line-height: 2.4;
}

/* CTA Section */
.cta-autocuidado {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0b4e23 0%, #1a7a3e 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: white;
    color: #0b4e23;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #f0f9f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .beneficios-gerais h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .servico-card {
        margin: 0 1rem;
    }

    .beneficio-item {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-autocuidado {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .servico-content {
        padding: 1.5rem;
    }

    .servico-beneficios ul {
        font-size: 0.9rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.beneficio-item {
    animation: fadeInUp 0.6s ease forwards;
}

.servico-card:nth-child(1) { animation-delay: 0.1s; }
.servico-card:nth-child(2) { animation-delay: 0.2s; }
.servico-card:nth-child(3) { animation-delay: 0.3s; }
.servico-card:nth-child(4) { animation-delay: 0.4s; }

.beneficio-item:nth-child(1) { animation-delay: 0.1s; }
.beneficio-item:nth-child(2) { animation-delay: 0.2s; }
.beneficio-item:nth-child(3) { animation-delay: 0.3s; }
.beneficio-item:nth-child(4) { animation-delay: 0.4s; }

/* Ajuste para footer */
.footer {
    margin-top: 3rem;
}

   /* ===== FOOTER PROFISSIONAL ===== */
.footer-pro {
    background-color: #0b4e23;
    color: #e6f7ee;
    padding: 3.5rem 1.5rem 1.5rem;
}

.footer-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-pro-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-pro-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1fae5;
}

.footer-pro-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-pro-col ul {
    list-style: none;
    padding: 0;
}

.footer-pro-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #bbf7d0;
}

.footer-pro-col ul li a {
    color: #bbf7d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-pro-col ul li a:hover {
    color: #ffffff;
}

/* Contato */
.footer-pro-contact li {
    line-height: 1.5;
}

/* Redes sociais */
.footer-pro-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-pro-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-pro-social a:hover {
    background: rgba(228, 228, 228, 0.3);
}

/* Linha inferior */
.footer-pro-bottom {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: #bbf7d0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .footer-pro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-pro-social {
        justify-content: center;
    }
}

.icon-instagram svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}


 /* ========== HAMBÚRGUER BUTTON ========== */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .hamburger-btn:hover {
            background: rgba(255,255,255,0.15);
        }
        .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                        opacity 0.25s ease,
                        width 0.3s ease;
            transform-origin: center;
        }
        .hamburger-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger-btn.open .bar:nth-child(2) { opacity: 0; width: 0; }
        .hamburger-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ========== OVERLAY ========== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0);
            pointer-events: none;
            transition: background 0.35s ease;
            z-index: 1100;
        }
        .nav-overlay.visible {
            background: rgba(0,0,0,0.4);
            pointer-events: all;
        }

        /* ========== SIDEBAR ========== */
        .side-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100%;
            background: #fff;
            border-right: 1px solid rgba(0,0,0,0.08);
            box-shadow: 4px 0 24px rgba(0,0,0,0.12);
            transform: translateX(-100%);
            transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .side-nav.open { transform: translateX(0); }

        .side-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px 12px;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            flex-shrink: 0;
            background: #0b4e23;
        }
        .side-nav-logo {
            height: 52px;
            width: auto;
        }
        .side-close-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: rgba(255,255,255,0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            transition: background 0.15s;
        }
        .side-close-btn:hover { background: rgba(255,255,255,0.3); }

        .side-nav-links {
            flex: 1;
            padding: 12px;
            overflow-y: auto;
        }

        .side-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 8px;
            font-size: 15px;
            color: #444;
            cursor: pointer;
            text-decoration: none;
            opacity: 0;
            transform: translateX(-16px);
            transition: background 0.15s, color 0.15s, opacity 0.3s ease, transform 0.3s ease;
        }
        .side-nav.open .side-nav-item { opacity: 1; transform: translateX(0); }
        .side-nav.open .side-nav-item:nth-child(1) { transition-delay: 0.06s; }
        .side-nav.open .side-nav-item:nth-child(2) { transition-delay: 0.10s; }
        .side-nav.open .side-nav-item:nth-child(3) { transition-delay: 0.14s; }
        .side-nav.open .side-nav-item:nth-child(4) { transition-delay: 0.18s; }
        .side-nav.open .side-nav-item:nth-child(5) { transition-delay: 0.22s; }

        .side-nav-item:hover { background: #f0fdf4; color: #0b4e23; }
        .side-nav-item.active { background: #e8f5ed; color: #0b4e23; font-weight: 600; }

        .side-nav-item svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.55;
        }
        .side-nav-item.active svg,
        .side-nav-item:hover svg { opacity: 1; }

        .side-divider {
            height: 1px;
            background: rgba(0,0,0,0.07);
            margin: 8px 12px;
        }

        .side-nav-footer {
            padding: 14px 18px 20px;
            border-top: 1px solid rgba(0,0,0,0.07);
        }
        .side-btn-login {
            display: block;
            width: 100%;
            padding: 11px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: #0b4e23;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.15s;
        }
        .side-btn-login:hover { background: #15803d; }

        /* Mostrar hambúrguer só no mobile */
        @media (max-width: 768px) {
            .hamburger-btn { display: flex; }
            /* esconde o botão antigo caso ainda exista */
            .mobile-menu-btn { display: none !important; }
        }
