/* ==========================================================================
   CONFIGURAÇÕES GERAIS E CORES (RESET)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light-creme: #e8e6dc; /* Cor de fundo principal de algumas seções */
    --bg-dark-creme: #eaddd0;  /* Cor de fundo ligeiramente mais escura/rosada */
    --text-color: #2b2b2b;
    --primary-green: #114a24; /* Verde escuro do botão "Agendar Consulta" */
    --secondary-green: #597d57; /* Verde médio do botão superior */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

/* ==========================================================================
   HEADER & MENU (ABAS)
   ========================================================================== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px; /* Ajuste conforme o tamanho da sua imagem de logo */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-primary-small {
    background-color: var(--secondary-green);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-primary-small:hover {
    background-color: var(--primary-green);
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-green);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-green);
}

/* ==========================================================================
   SEÇÃO HERO (BANNER PRINCIPAL)
   ========================================================================== */
.hero-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    max-width: 400px;
}

.hero-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%; /* Faz a imagem ficar perfeitamente redonda como no Canva */
}

/* ==========================================================================
   SEÇÃO INTRO (PORQUE FAZER TERAPIA)
   ========================================================================== */
.intro-section {
    background-color: var(--bg-light-creme);
    padding: 80px 20px;
    text-align: left;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.simple-footer {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    font-size: 0.85rem;
}

/* Responsividade Básica para Celular */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
        margin: 0 auto;
    }
    .hero-image img {
        width: 280px;
        height: 280px;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
}
/* ==========================================================================
   SEÇÃO QUEM SOMOS (EQUIPE)
   ========================================================================== */
.team-section {
    background-color: var(--bg-dark-creme); /* Cor de fundo terrosa/pastél da imagem 4 */
    padding: 80px 20px;
    text-align: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 60px;
}

.team-header h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-color);
}

/* Criando o alinhamento em colunas dos profissionais */
.team-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 40px;
}

.team-card {
    display: table-cell;
    text-align: center;
    padding: 0 20px;
    vertical-align: top;
}

/* Formato circular idêntico ao Canva para as fotos */
.profile-img-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #cccccc; /* Cor cinza temporária enquanto não tem imagem */
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.team-card .crp {
    font-size: 1rem;
    color: #666666;
}

.team-action {
    margin-top: 40px;
}

/* Responsividade para celulares (transforma a tabela em blocos empilhados) */
@media (max-width: 768px) {
    .team-header h2 {
        font-size: 2.2rem;
    }
    
    .team-grid, .team-card {
        display: block;
        width: 100%;
    }
    
    .team-card {
        margin-bottom: 40px;
        padding: 0;
    }
}
/* ==========================================================================
   ESTILOS GERAIS PARA AS SEÇÕES
   ========================================================================== */
.container-default {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* ==========================================================================
   1. SEÇÃO ATIVIDADES
   ========================================================================== */
.activities-section {
    background-color: var(--bg-light-creme);
    padding: 80px 0;
    text-align: center;
}

.activities-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.activity-card {
    display: table-cell;
    padding: 0 15px;
    vertical-align: top;
}

.icon-placeholder-circle {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-green);
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.activity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.activity-card p {
    font-size: 0.95rem;
    color: #555555;
}

/* ==========================================================================
   2. SEÇÃO MODALIDADES
   ========================================================================== */
.modalities-section {
    background-color: var(--bg-dark-creme);
    padding: 80px 0;
}

.modalities-layout {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.modality-block {
    display: table-cell;
    width: 50%;
    padding: 0 30px;
    vertical-align: middle;
}

.modality-img-container {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #cccccc;
}

.modality-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.modality-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

/* ==========================================================================
   3. SEÇÃO JORNADA DE RECUPERAÇÃO
   ========================================================================== */
.journey-section {
    background-color: var(--bg-dark-creme);
    padding: 80px 0;
}

.journey-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.journey-step {
    display: inline-block;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
    vertical-align: top;
}

.step-number {
    display: table-cell;
    width: 70px;
    height: 70px;
    background-color: var(--secondary-green);
    color: #ffffff;
    font-size: 2rem;
    font-family: var(--font-serif);
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
}

.step-content {
    display: table-cell;
    padding-left: 20px;
    vertical-align: middle;
}

.step-content h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 5px;
}

/* Responsividade para Telas Menores */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; text-align: center; }
    
    .activities-grid, .activity-card,
    .modalities-layout, .modality-block {
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .journey-step {
        width: 100%;
        display: block;
        padding: 15px 0;
    }
}
/* ==========================================================================
   SEÇÃO FAQ (DÚVIDAS FREQUENTES)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-light-creme); /* Cor bege claro de fundo */
    padding: 100px 0;
}

.faq-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-top: 40px;
}

.faq-item {
    display: table-cell;
    padding: 0 25px;
    vertical-align: top;
}

.faq-item h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Responsividade para o FAQ empilhar no celular */
@media (max-width: 768px) {
    .faq-grid {
        display: block;
    }
    
    .faq-item {
        display: block;
        width: 100%;
        margin-bottom: 50px;
        padding: 0;
    }
    
    .faq-item h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}
/* ==========================================================================
   SEÇÃO CONTATO / FORMULÁRIO
   ========================================================================= */
.contact-form-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.container-small {
    max-width: 600px;
    margin: 0 auto;
}

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

.nexo-form {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Customização dos inputs baseados nas linhas verdes do modelo */
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background-color: #fcfcf9;
}

/* Botão de envio verde escuro idêntico ao "AGENDAR CONSULTA" */
.btn-submit {
    width: 100%;
    background-color: #03421b; /* Verde bem escuro do card de form */
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-green);
}

/* ==========================================================================
   SEÇÃO INFORMAÇÕES DE CONTATO E UNIDADES
   ========================================================================== */
.info-section {
    background-color: var(--bg-light-creme);
    padding: 80px 0;
}

.info-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.info-col {
    display: table-cell;
    padding: 0 30px;
    vertical-align: top;
}

.info-col h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-color);
}

.info-col p, .units-list li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details {
    font-size: 1.1rem !important;
}

.units-list {
    list-style: none;
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .info-grid {
        display: block;
    }
    
    .info-col {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}