/* ============================================
   CAIS - Design Minimalista e Conceitual
   ============================================ */

:root {
    --cor-laranja: #b74a00;
    --cor-offwhite: #f7f7d3;
    --cor-texto: #FFFFFF;
    --cor-portabella: #927b69;
    --cor-maui-blue: #53a2b3;
    --cor-luz-palha: #f7f7d3;
    --cor-mahogany: #42271c;
    --font-main: 'Osande', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

/* ============================================
   RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--cor-mahogany);
    color: var(--cor-texto);
    line-height: 1.4;
    overflow-x: hidden;
}

::selection {
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.nav-floating.scrolled {
    background: rgba(66, 39, 28, 0.95);
    backdrop-filter: blur(10px);
}

/* Navegação sempre visível em páginas internas */
body:has(.profile-detail) .nav-floating,
body:has(.project-page) .nav-floating {
    background: rgba(66, 39, 28, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--cor-texto);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-cta {
    background: var(--cor-offwhite);
    color: var(--cor-laranja);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cor-texto);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO - Seção 1
   ============================================ */

.hero {
    min-height: 150vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    background: url('../assets/images/nova2.jpg') center/cover no-repeat fixed;
    text-align: center;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-md) var(--spacing-lg);
    padding-bottom: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-logo {
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease-out;
}

.hero-logo img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    text-transform: none;
}

.hero-welcome {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    background: var(--cor-offwhite);
    color: var(--cor-laranja);
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover {
    transform: scale(1.05);
}

/* ============================================
   SOBRE NÓS - Seção 2
   ============================================ */

/* ============================================
   SOBRE NÓS - Faixa de transição laranja
   ============================================ */

.sobre-nos {
    margin-top: -1px;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--cor-laranja);
    position: relative;
    text-align: center;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-nos::before,
.sobre-nos::after {
    content: none;
}

.nossas-psicologas .section-title {
    text-align: center;
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-md);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4vw, 3rem);
}

.intro-psicologas {
    text-align: center;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--cor-offwhite);
    font-weight: 400;
    opacity: 0.95;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 60px;
    }
    
    .wave-top-in {
        transform: translateY(-100%);
        top: -1px;
    }
    
    .o-cais-section {
        margin-top: 2px;
    }
}

.wave-top {
    bottom: -1px;
}

.wave-bottom {
    bottom: 0;
    transform: translateY(99%);
}

.wave-top-in {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-99%);
    z-index: 15;
}

.wave-bottom-out {
    position: absolute;
    bottom: -1px;
    transform: translateY(99%);
    z-index: 15;
}

.sobre-nos .container {
    position: relative;
    z-index: 2;
}

.sobre-nos .section-title {
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-md);
    display: none;
}

.sobre-nos-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: var(--cor-offwhite);
    font-weight: 500;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

/* ============================================
   NOSSAS PSICÓLOGAS - Seção 3
   ============================================ */

.quem-somos,
.nossas-psicologas {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../assets/images/Foto3.jpeg') center/cover no-repeat fixed;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: calc(var(--spacing-xl) + 100px);
}

.quem-somos::before,
.nossas-psicologas::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-intro {
    max-width: 800px;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

/* Perfis das Psicólogas */
.profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.profile-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.profile-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: var(--spacing-sm);
}

.profile-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--cor-laranja);
}

.profile-name-link {
    color: var(--cor-laranja);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.profile-name-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.profile-crp {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.profile-bio,
.profile-themes {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    opacity: 1;
    color: #FFFFFF;
    flex: 1;
}

.profile-pricing {
    font-size: 0.9rem;
    color: var(--cor-laranja);
    background: rgba(198, 83, 0, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: auto;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(198, 83, 0, 0.2);
}

.profile-pricing strong {
    color: var(--cor-offwhite);
}

.profile-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-actions > * {
    flex: 1 1 auto;
    min-width: 140px;
}

.btn-profile-secondary {
    display: inline-block;
    background: transparent;
    color: var(--cor-laranja);
    border: 2px solid var(--cor-laranja);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-profile-secondary:hover {
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    transform: scale(1.05);
}

.btn-profile-cta {
    display: inline-block;
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-profile-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(198, 83, 0, 0.4);
}

.origin-story {
    display: none;
}

/* ============================================
   COMO FUNCIONA / O CAIS - Seção 4
   ============================================ */

.como-funciona {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1a1a1a;
    text-align: center;
    padding: calc(var(--spacing-xl) + 60px) var(--spacing-md);
    margin-top: 100px;
    margin-bottom: 100px;
    overflow: visible;
}

.como-funciona::before {
    content: none;
}

/* ============================================
   O CAIS - Seção estilo igual Sobre Nós
   ============================================ */

.o-cais-section {
    margin-top: 0;
    padding: var(--spacing-md) var(--spacing-md);
    background: var(--cor-portabella);
    position: relative;
    text-align: center;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o-cais-section .container {
    position: relative;
    z-index: 2;
}

.o-cais-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    color: var(--cor-offwhite);
    font-weight: 500;
    padding: 0 var(--spacing-lg);
}

.o-cais-title {
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-sm);
    text-transform: none;
}

/* Como funciona - Steps */
.como-funciona-steps {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--cor-offwhite);
    color: var(--cor-portabella);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.step-item p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.5;
    color: var(--cor-offwhite);
    margin: 0;
}

/* ============================================
   CTA WAVE SECTION - Entre FAQ e Contato
   ============================================ */

.cta-wave-section {
    margin-top: -1px;
    padding: var(--spacing-md) var(--spacing-md);
    background: var(--cor-maui-blue);
    position: relative;
    text-align: center;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-wave-section .container {
    position: relative;
    z-index: 2;
}

.cta-wave-title {
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-sm);
    text-transform: none;
}

.cta-wave-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    color: var(--cor-offwhite);
    font-weight: 500;
    padding: 0 var(--spacing-lg);
    opacity: 0.95;
}

.btn-cta-wave {
    display: inline-block;
    background: var(--cor-offwhite);
    color: var(--cor-mahogany);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-wave:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   COMO FUNCIONA
   ============================================ */

.como-funciona {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../assets/images/Foto3.jpeg') center/cover no-repeat fixed;
    padding: var(--spacing-xl) var(--spacing-md);
}

.como-funciona::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.como-funciona > * {
    position: relative;
    z-index: 2;
}

.como-funciona .container {
    max-width: 900px;
    text-align: center;
}

.como-funciona .section-title {
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-md);
    font-size: clamp(2rem, 4vw, 3rem);
}

.como-funciona-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-md);
}

.como-funciona-cta {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    line-height: 1.6;
    color: var(--cor-laranja);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   O CAIS / SAIBA MAIS - Old section
   ============================================ */

.como-funciona > * {
    position: relative;
    z-index: 2;
}

.como-funciona .section-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: var(--spacing-sm);
    color: var(--cor-laranja);
}

.section-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    text-transform: lowercase;
}

.btn-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-section:hover {
    transform: scale(1.05);
}

.steps {
    display: none;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    min-height: auto;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: calc(var(--spacing-xl) + 100px);
    background: url('../assets/images/Foto2.jpeg') center/cover no-repeat fixed;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.faq > * {
    position: relative;
    z-index: 2;
}

.faq .container {
    max-width: 900px;
}

.faq-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 1rem var(--spacing-md);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.faq-item summary {
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cor-offwhite);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--cor-laranja);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: var(--spacing-sm);
    line-height: 1.6;
    opacity: 0.95;
    color: var(--cor-offwhite);
    font-size: 0.95rem;
}

/* FAQ dentro de páginas internas (o-cais.html) */
.project-section .faq-item {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-section .faq-item:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.project-section .faq-item summary {
    color: #333;
}

.project-section .faq-item p {
    color: #444;
}

/* ============================================
   TALVEZ VOCÊ ESTEJA SE PERGUNTANDO
   ============================================ */

.talvez-perguntando {
    padding: var(--spacing-xl) var(--spacing-md);
    background: url('../assets/images/Foto2.jpeg') center/cover no-repeat fixed;
    position: relative;
    min-height: 100vh;
}

.talvez-perguntando::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.talvez-perguntando > .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.perguntando-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.perguntando-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(198, 83, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.perguntando-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.perguntando-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
}

.perguntando-author h3 {
    font-size: 1rem;
    color: var(--cor-laranja);
    text-align: center;
}

.perguntando-content h4 {
    font-size: 1.3rem;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
}

.perguntando-content p {
    color: #333;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .perguntando-item {
        flex-direction: column;
        text-align: center;
    }
    
    .perguntando-author {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
    padding: var(--spacing-xl) var(--spacing-md);
    background: url('../assets/images/Foto1.jpeg') center/cover no-repeat fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contato::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}

.contato .container {
    position: relative;
    z-index: 2;
}

.contato .section-title {
    color: var(--cor-laranja);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    text-transform: none;
}

.contato .section-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-lg);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--cor-laranja);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(198, 83, 0, 0.2);
    border-radius: 15px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.85);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-laranja);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.form-message {
    margin-top: var(--spacing-md);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #c62828;
    display: block;
}

.social-links {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.social-text {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--cor-mahogany);
    text-align: center;
}

.footer-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-sub {
    font-size: 1rem;
    opacity: 0.7;
}

.emergency-notice {
    margin: var(--spacing-lg) auto;
    max-width: 700px;
    padding: var(--spacing-md);
    background: rgba(202, 197, 170, 0.1);
    border: 1px solid var(--cor-luz-palha);
    border-radius: 15px;
}

.emergency-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-luz-palha);
    margin-bottom: 1rem;
}

.emergency-text {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.95;
    text-align: left;
}

/* ============================================
   PÁGINAS DE PERFIL DETALHADAS
   ============================================ */

.profile-detail {
    min-height: 100vh;
    padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
    background: url('../assets/images/Foto1.jpeg') center/cover no-repeat;
    color: #000;
    position: relative;
    isolation: isolate;
}

.profile-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.profile-detail > .container {
    position: relative;
    z-index: 2;
}

.profile-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.profile-detail-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-detail-info {
    padding: var(--spacing-md) 0;
}

.profile-detail-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.profile-detail-tagline {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.profile-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.profile-section h2 {
    font-size: 2rem;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-md);
}

.profile-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.profile-section ul {
    list-style: none;
    padding: 0;
}

.profile-section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.profile-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cor-laranja);
    font-weight: bold;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

.profile-cta-section {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-top: var(--spacing-xl);
    border: 1px solid rgba(198, 83, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.profile-cta-section h2 {
    font-size: 2.5rem;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
}

.profile-cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

/* Novo Layout de Perfil - Duas Colunas */
.profile-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 100px;
}

.profile-detail-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
}

.profile-contact-box {
    background: var(--cor-laranja);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.profile-name-sidebar {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cor-offwhite);
    margin-bottom: 0.5rem;
}

.profile-crp {
    font-size: 0.9rem;
    color: var(--cor-offwhite);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.profile-pricing {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.price-item {
    font-size: 0.9rem;
    color: var(--cor-offwhite);
    margin: 0.5rem 0;
    font-weight: 500;
}

.btn-schedule {
    display: block;
    width: 100%;
    background: var(--cor-mahogany);
    color: var(--cor-offwhite);
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: transform 0.3s ease;
}

.btn-schedule:hover {
    transform: translateY(-2px);
}

.profile-info-box {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
}

.profile-info-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
}

.profile-info-box ul {
    list-style: none;
    padding: 0;
}

.profile-info-box ul li {
    font-size: 0.9rem;
    color: #333;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.profile-info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cor-laranja);
}

.profile-main-content {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.profile-content-section {
    margin-bottom: var(--spacing-lg);
}

.profile-content-section:last-child {
    margin-bottom: 0;
}

.section-title-profile {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-md);
}

.profile-content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: var(--spacing-sm);
}

.formation-list {
    list-style: none;
    padding: 0;
}

.formation-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.formation-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cor-laranja);
}

/* ============================================
   PÁGINA O CAIS
   ============================================ */

.project-page {
    min-height: 100vh;
    padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
    background: url('../assets/images/nova2.jpg') center/cover no-repeat scroll;
    background-attachment: scroll;
    color: #000;
    position: relative;
    isolation: isolate;
}

.project-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.project-page > .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    color: var(--cor-laranja);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    text-transform: lowercase;
}

.page-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    opacity: 0.8;
}

.project-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.project-section h2 {
    font-size: 2.2rem;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-md);
}

.project-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step-card {
    background: rgba(198, 83, 0, 0.05);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-sm);
}

.step-card h3 {
    font-size: 1.2rem;
    color: var(--cor-laranja);
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-laranja);
    font-weight: bold;
    font-size: 1.5rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-top: var(--spacing-md);
}

.themes-intro {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.theme-card {
    background: var(--cor-laranja);
    color: var(--cor-offwhite);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.work-subsection {
    margin-bottom: var(--spacing-lg);
}

.work-subsection h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--cor-laranja);
    font-weight: 500;
}

.work-subsection p {
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-top: var(--spacing-xl);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--cor-laranja);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-floating {
        padding: 1.5rem 1.5rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .nav-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero,
    .intro,
    .como-funciona {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .quem-somos,
    .nossas-psicologas {
        padding: var(--spacing-xl) var(--spacing-md);
        padding-top: calc(var(--spacing-xl) + 100px);
    }
    
    .hero-logo img {
        width: 170px;
    }
    
    /* Mobile: manter grid de 2 colunas para tablets, 1 para celulares pequenos */
    .profiles {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    
    .profile-card {
        padding: var(--spacing-md);
    }
    
    .profile-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-profile-secondary,
    .btn-profile-cta {
        width: 100%;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .profile-detail-photo {
        height: 350px;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    /* Novo layout perfil mobile */
    .profile-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .profile-sidebar {
        position: relative;
        top: 0;
    }
    
    /* Centralizar textos das seções coloridas no mobile */
    .sobre-nos-text,
    .o-cais-text,
    .cta-wave-text {
        text-align: center;
    }
    
    /* Reduzir altura da seção sobre nós no mobile */
    .sobre-nos {
        min-height: 30vh;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .nav-links {
        gap: var(--spacing-sm);
    }
    
    /* Steps em coluna no mobile */
    .como-funciona-steps {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .step-item {
        flex-direction: row;
        max-width: 100%;
        text-align: left;
        gap: var(--spacing-sm);
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Em telas muito pequenas, forçar 1 coluna */
    .profiles {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .btn-profile-secondary,
    .btn-profile-cta {
        width: 100%;
    }
    
    /* Texto mais próximo das bordas em telas pequenas */
    .hero,
    .sobre-nos,
    .nossas-psicologas,
    .quem-somos,
    .o-cais-section,
    .faq,
    .cta-wave-section,
    .contato {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .sobre-nos-text,
    .o-cais-text,
    .cta-wave-text {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .faq-item {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .project-section {
        padding: 1.5rem 1rem;
    }
    
    .profile-main-content {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        padding-left: 0;
        padding-right: 0;
    }
    
    .intro-psicologas {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Desabilitar animação nas páginas internas */
.profile-detail .fade-in,
.project-page .fade-in {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
}

.profile-detail .fade-in.visible,
.project-page .fade-in.visible {
    transform: none !important;
}
