/* =========================================
           1. VARIÁVEIS E RESET (CSS MODERNO)
           ========================================= */
:root {
    --color-green: #70C25B;
    --color-green-hover: #5da84b;
    --color-blue: #0A1A2F;
    --color-gray-bg: #F4F4F4;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #484848;

    --gradient-green: linear-gradient(135deg, #70C25B 0%, #4da53b 100%);
    --gradient-green-hover: linear-gradient(135deg, #5da84b 0%, #3a7a2a 100%);
    --gradient-blue: linear-gradient(135deg, #0A1A2F 0%, #153866 100%);

    --font-main: 'Poppins', sans-serif;

    --spacing-container: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --btn-radius: 48px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(112, 194, 91, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilitários */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-green {
    background: var(--gradient-green);
    color: var(--color-white);
}

.btn-green:hover {
    background: var(--gradient-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-blue {
    background: var(--gradient-blue);
    color: var(--color-white);
}

.btn-blue:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 26, 47, 0.2);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--color-green);
}

.text-gradient {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,
h2,
h3,
h4 {
    color: var(--color-blue);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* =========================================
           2. HEADER / NAVBAR
           ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--color-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Reduzir de 40px para 20px ou 15px */
}

.nav-link {
    font-weight: 500;
    color: var(--color-blue);
    transition: var(--transition);
    /* Se necessário, reduza um pouco a fonte (padrão costuma ser 1rem) */
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--color-green);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-blue);
    cursor: pointer;
}

/* =========================================
           3. HERO SECTION
           ========================================= */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 150px;
    /* Espaço para os cards flutuantes */
    background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0.8)), url('../imagens/img_07.webp');
    background-size: cover;
    background-position: center right;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* =========================================
           4. CARTÕES FLUTUANTES
           ========================================= */
.floating-cards {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-float {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.card-float::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.card-float:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-float:hover::after {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.card-float h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-blue);
}

/* =========================================
           5. SEÇÃO SOBRE NÓS
           ========================================= */
.about-section {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.about-stats {
    display: inline-block;
    width: fit-content;
    background: var(--gradient-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--color-blue);
}

.check-list i {
    color: var(--color-green);
}

/* =========================================
           6. FAIXA DE ESTATÍSTICAS
           ========================================= */
.stats-section {
    background: var(--gradient-green);
    padding: 60px 0;
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* =========================================
           7. TERAPIAS (GRID)
           ========================================= */
.services-section {
    background-color: var(--color-gray-bg);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card:hover .icon {
    background: var(--gradient-green);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(112, 194, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-link {
    color: var(--color-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}


/* =========================================
          SEÇÃO DEPOIMENTOS
        ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--color-green);
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: 10px;
}

.client-name {
    display: block;
    font-weight: 600;
    color: var(--color-blue);
    font-size: 0.95rem;
    text-align: right;
    margin-top: 10px;
}

/* =========================================
   15. SEÇÃO LOCALIZAÇÃO E HORÁRIOS (NOVO)
   ========================================= */

.location-section {
    background-color: var(--color-gray-bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Divide em duas colunas iguais */
    gap: 50px;
    align-items: start;
}

/* Estilo da Lista de Contatos */
.contact-list-styled {
    margin-top: 30px;
}

.contact-list-styled li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-list-styled .icon-box {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    /* Impede o ícone de encolher */
}

.contact-list-styled strong {
    display: block;
    color: var(--color-blue);
    margin-bottom: 2px;
}

.contact-list-styled p {
    margin: 0;
    font-size: 0.95rem;
}

/* Caixa de Horários */
.opening-hours-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-top: 30px;
    border-left: 4px solid var(--color-green);
}

.opening-hours-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: var(--color-text-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .time {
    font-weight: 600;
    color: var(--color-blue);
}

/* Mapa */
.location-map {
    height: 100%;
    min-height: 500px;
    /* Garante altura para o mapa */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: #e5e3df;
    /* Cor de fundo enquanto carrega */
}

/* Responsividade para a nova seção */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        /* Vira uma coluna só no mobile */
        gap: 40px;
    }

    .location-map {
        min-height: 350px;
        order: -1;
        /* Opcional: Coloca o mapa acima do texto no mobile */
    }
}

/* =========================================
           8. AGENDAMENTO (AJAX FORM)
           ========================================= */
.contact-section {
    background-color: var(--color-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-content-new {
    padding: 80px 60px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-features {
    margin: 30px 0;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-blue);
}

.feature-item i {
    color: var(--color-green);
    background: rgba(112, 194, 91, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.contact-actions {
    margin-top: 20px;
}

.whatsapp-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

.contact-image {
    background: url('../imagens/img_02.webp') center/cover;
    min-height: 100%;
}



/* =========================================
           9. MODAL & FOOTER
           ========================================= */
/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

/* Footer */
footer {
    background: var(--gradient-blue);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: rgb(65, 194, 0);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =========================================
           RESPONSIVIDADE (MOBILE FIRST)
           ========================================= */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
        margin-bottom: 30px;
    }

    .contact-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block;
        margin: 15px;
    }

    .hero {
        padding-top: 120px;
        background-position: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-cards {
        margin-top: -50px;
    }
}

/* =========================================
           SEÇÃO EQUIPE
           ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--color-white);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.team-member:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.team-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
    margin-bottom: 0;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-member .role {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* =========================================
           SEÇÃO FAQ
           ========================================= */
.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--color-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-green);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: var(--color-green);
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

/* =========================================
            CTA FINAL
           ========================================= */
.final-cta {
    background: var(--gradient-blue);
    color: var(--color-white);
}

.final-cta h2 {
    color: var(--color-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    height: 56px;
    padding: 0 40px;
    font-size: 1.1rem;
}

.final-cta .btn-blue {
    background: var(--gradient-green);
    color: var(--color-blue);
}

.final-cta .btn-blue:hover {
    background: var(--gradient-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(112, 194, 91, 0.3);
}

/* =========================================
           14. RESPONSIVIDADE
           ========================================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid,
    .team-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    h2 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .contact-content-new {
        padding: 50px 20px;
    }
    
    .contact-actions .btn {
        width: fit-content;
        white-space: nowrap;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0 18px;
        height: 42px;
        font-size: 0.85rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .nav-menu {
        gap: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .team-content {
        padding: 25px;
    }
}