/**
 * =====================================================
 * ELO MENTE — CSS PRINCIPAL v2.0
 * Design moderno, profissional e orientado a conversão
 * Paleta: #6A4C93 (roxo) + #2CA6A4 (teal)
 * =====================================================
 */

/* =====================================================
 * VARIÁVEIS DE DESIGN
 * ===================================================== */
:root {
    /* Cores principais */
    --roxo:          #6A4C93;
    --roxo-escuro:   #4A3063;
    --roxo-medio:    #5A3D7F;
    --roxo-claro:    #9B7EC8;
    --roxo-suave:    #F2EEF9;

    --teal:          #2CA6A4;
    --teal-escuro:   #1D7A78;
    --teal-claro:    #4DC8C6;
    --teal-suave:    #EBF8F8;

    /* Neutros */
    --branco:        #FFFFFF;
    --cinza-00:      #FAFAFA;
    --cinza-10:      #F4F4F7;
    --cinza-20:      #E8E8EF;
    --cinza-40:      #BBBBC8;
    --cinza-60:      #7A7A8C;
    --cinza-80:      #3D3D50;
    --preto:         #1A1A2E;

    /* Semânticas */
    --sucesso:       #22C55E;
    --perigo:        #EF4444;
    --aviso:         #F59E0B;
    --info:          #3B82F6;
    --estrela:       #F59E0B;

    /* Tipografia */
    --fonte-titulo:  'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --fonte-corpo:   'DM Sans', 'Segoe UI', sans-serif;

    /* Espaçamento */
    --raio:          14px;
    --raio-sm:       8px;
    --raio-lg:       20px;
    --raio-pill:     100px;

    /* Sombras */
    --sombra-xs:     0 1px 3px rgba(26,26,46,.06), 0 1px 2px rgba(26,26,46,.04);
    --sombra-sm:     0 4px 12px rgba(26,26,46,.08);
    --sombra-md:     0 8px 24px rgba(26,26,46,.10);
    --sombra-lg:     0 16px 48px rgba(26,26,46,.12);
    --sombra-roxo:   0 8px 24px rgba(106,76,147,.25);
    --sombra-teal:   0 8px 24px rgba(44,166,164,.25);

    /* Transições */
    --trans:         all .25s cubic-bezier(.4,0,.2,1);
    --trans-rapida:  all .15s ease;

    /* Layout */
    --header-h:      76px;
}

/* =====================================================
 * RESET E BASE
 * ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--fonte-corpo);
    color: var(--cinza-80);
    background: var(--cinza-00);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    color: var(--preto);
    line-height: 1.25;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; }

/* =====================================================
 * BOTÕES
 * ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--fonte-titulo);
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--raio-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--trans);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: .01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-medio) 100%);
    color: var(--branco);
    box-shadow: var(--sombra-roxo);
    border-color: var(--roxo);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo) 100%);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(106,76,147,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-escuro) 100%);
    color: var(--branco);
    box-shadow: var(--sombra-teal);
    border-color: var(--teal);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, var(--teal-escuro) 0%, var(--teal) 100%);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(44,166,164,.35);
}

.btn-outline-primary {
    background: transparent;
    color: var(--roxo);
    border-color: var(--roxo);
}
.btn-outline-primary:hover {
    background: var(--roxo);
    color: var(--branco);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--branco);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
    background: var(--branco);
    color: var(--roxo);
    border-color: var(--branco);
}

.btn-light {
    background: var(--branco);
    color: var(--roxo);
    border-color: var(--branco);
}
.btn-light:hover {
    background: var(--roxo-suave);
    color: var(--roxo-escuro);
    transform: translateY(-2px);
}

.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-xl { padding: 20px 52px; font-size: 1.1rem; }

/* =====================================================
 * HEADER / NAVBAR
 * ===================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cinza-20);
    transition: var(--trans);
    height: var(--header-h);
    display: flex;
    align-items: center;
}

.header.scrolled {
    box-shadow: var(--sombra-md);
    border-bottom-color: transparent;
}

.navbar { padding: 0; width: 100%; }

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { height: 44px; width: auto; }

.navbar-nav { gap: 4px; }

.nav-link {
    color: var(--cinza-80) !important;
    font-family: var(--fonte-titulo);
    font-weight: 500;
    font-size: .93rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--trans);
    letter-spacing: .01em;
}
.nav-link:hover { color: var(--roxo) !important; background: var(--roxo-suave); }
.nav-link.active { color: var(--roxo) !important; background: var(--roxo-suave); }

.header-spacer { height: var(--header-h); }

/* =====================================================
 * HERO SECTION
 * ===================================================== */
.hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, var(--roxo-escuro) 0%, var(--roxo) 45%, var(--teal-escuro) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Organic blob shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(ellipse, rgba(44,166,164,.25) 0%, transparent 70%);
    bottom: -100px; left: -50px;
    border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.95);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--raio-pill);
    margin-bottom: 24px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal-claro);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.hero h1 .destaque {
    background: linear-gradient(90deg, var(--teal-claro), #A8E6CF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat { text-align: left; }
.hero-stat-number {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    font-weight: 800;
    color: var(--branco);
    line-height: 1;
}
.hero-stat-label {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    margin-top: 4px;
    letter-spacing: .02em;
}

/* Confiança / trust badges */
.hero-trust {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--raio-pill);
    padding: 6px 14px;
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 500;
}
.trust-badge i { color: var(--teal-claro); font-size: .85rem; }

.hero-visual {
    position: relative; z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card flutuante de prova social no hero */
.hero-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 28px;
    color: var(--branco);
    max-width: 320px;
    width: 100%;
}
.hero-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.hero-avatars { display: flex; gap: -8px; margin-bottom: 12px; }
.hero-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.3);
    background: linear-gradient(135deg, var(--roxo-claro), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700; color: var(--branco);
    margin-right: -10px;
}
.hero-card p { font-size: .85rem; color: rgba(255,255,255,.75); }

/* =====================================================
 * SEÇÕES COMUNS
 * ===================================================== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--roxo-suave);
    color: var(--roxo);
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--raio-pill);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--preto);
    margin-bottom: 14px;
    letter-spacing: -.02em;
}
.section-title p {
    font-size: 1.05rem;
    color: var(--cinza-60);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-bg-branco { background: var(--branco); }
.section-bg-cinza  { background: var(--cinza-10); }
.section-bg-roxo   { background: linear-gradient(140deg, var(--roxo-escuro), var(--roxo)); }
.section-bg-teal   { background: linear-gradient(140deg, var(--teal-escuro), var(--teal)); }

/* =====================================================
 * COMO FUNCIONA — STEPS
 * ===================================================== */
.step-card {
    text-align: center;
    padding: 44px 32px;
    background: var(--branco);
    border-radius: var(--raio-lg);
    border: 1px solid var(--cinza-20);
    transition: var(--trans);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo), var(--teal));
    opacity: 0;
    transition: var(--trans);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--sombra-lg); border-color: transparent; }
.step-card:hover::before { opacity: 1; }

.step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--roxo-suave), var(--teal-suave));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: var(--roxo);
    position: relative;
}
.step-number {
    position: absolute;
    top: -6px; right: -6px;
    width: 24px; height: 24px;
    background: var(--roxo);
    color: var(--branco);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fonte-titulo);
}
.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--preto);
}
.step-card p { color: var(--cinza-60); font-size: .95rem; }

/* =====================================================
 * CARDS DE PSICÓLOGOS
 * ===================================================== */
.psychologist-card {
    background: var(--branco);
    border-radius: var(--raio-lg);
    overflow: hidden;
    border: 1px solid var(--cinza-20);
    transition: var(--trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.psychologist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-lg);
    border-color: var(--roxo-claro);
}

.psychologist-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--roxo-suave), var(--teal-suave));
}
.psychologist-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.psychologist-card:hover .psychologist-image img { transform: scale(1.05); }

.psychologist-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--teal);
    color: var(--branco);
    padding: 4px 12px;
    border-radius: var(--raio-pill);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.psi-avatar-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--roxo-suave) 0%, var(--teal-suave) 100%);
}
.psi-avatar-placeholder i { font-size: 4.5rem; color: var(--roxo-claro); opacity: .6; }

.psychologist-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.psychologist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 3px;
}
.psychologist-crp {
    font-size: .8rem;
    color: var(--cinza-40);
    margin-bottom: 10px;
}
.psychologist-specialty {
    display: inline-block;
    background: var(--roxo-suave);
    color: var(--roxo);
    padding: 4px 12px;
    border-radius: var(--raio-pill);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.psychologist-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
.psychologist-rating .stars { color: var(--estrela); font-size: .9rem; }
.psychologist-rating .score { font-weight: 700; color: var(--preto); font-size: .9rem; }
.psychologist-rating .reviews { font-size: .8rem; color: var(--cinza-60); }

.psychologist-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--roxo);
    margin-bottom: 18px;
    font-family: var(--fonte-titulo);
}
.psychologist-price span { font-size: .8rem; font-weight: 400; color: var(--cinza-60); }
.psychologist-card .btn { width: 100%; margin-top: auto; }

/* =====================================================
 * FILTROS
 * ===================================================== */
.filter-section {
    background: var(--branco);
    padding: 24px;
    border-radius: var(--raio-lg);
    box-shadow: var(--sombra-sm);
    margin-bottom: 36px;
    border: 1px solid var(--cinza-20);
}
.filter-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--cinza-60);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.filter-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { flex: 1; min-width: 190px; }
.filter-group label {
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--cinza-80);
    font-size: .88rem;
    display: block;
}
.form-select, .form-control {
    border: 1.5px solid var(--cinza-20);
    border-radius: var(--raio-sm);
    padding: 11px 14px;
    font-family: var(--fonte-corpo);
    font-size: .92rem;
    color: var(--cinza-80);
    background: var(--cinza-00);
    transition: var(--trans);
    width: 100%;
}
.form-select:focus, .form-control:focus {
    border-color: var(--roxo);
    box-shadow: 0 0 0 3px rgba(106,76,147,.12);
    outline: none;
    background: var(--branco);
}
.input-group .form-control { border-radius: 0 var(--raio-sm) var(--raio-sm) 0; }
.input-group-text {
    background: var(--cinza-10);
    border: 1.5px solid var(--cinza-20);
    border-right: none;
    border-radius: var(--raio-sm) 0 0 var(--raio-sm);
    color: var(--cinza-60);
    padding: 11px 14px;
}

/* =====================================================
 * DEPOIMENTOS
 * ===================================================== */
.testimonials-section {
    background: linear-gradient(140deg, var(--roxo-escuro) 0%, var(--roxo-medio) 50%, var(--teal-escuro) 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.testimonials-section .section-title h2,
.testimonials-section .section-title p { color: var(--branco); }
.testimonials-section .section-title p { color: rgba(255,255,255,.7); }

.testimonial-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    padding: 32px;
    border-radius: var(--raio-lg);
    height: 100%;
    transition: var(--trans);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-4px);
}

.testimonial-stars { color: var(--estrela); margin-bottom: 16px; font-size: .9rem; }
.testimonial-text {
    font-size: .98rem;
    color: rgba(255,255,255,.9);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.75;
}
.testimonial-text::before { content: '\201C'; font-size: 2rem; line-height: 0; vertical-align: -0.5em; color: var(--teal-claro); margin-right: 4px; }

.testimonial-author { display: flex; align-items: center; gap: 13px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--roxo-claro), var(--teal));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--branco);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--fonte-titulo);
    flex-shrink: 0;
}
.testimonial-info h4 { font-size: .95rem; font-weight: 700; color: var(--branco); margin-bottom: 2px; }
.testimonial-info p  { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; }

/* =====================================================
 * CTA SECTION
 * ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--teal-escuro) 0%, var(--teal) 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(255,255,255,.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--branco);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
 * BENEFÍCIOS / FEATURES
 * ===================================================== */
.benefit-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: var(--raio);
    transition: var(--trans);
}
.benefit-item:hover { background: var(--cinza-10); }
.benefit-icon {
    width: 52px; height: 52px;
    background: var(--roxo-suave);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--roxo);
    flex-shrink: 0;
}
.benefit-icon.teal { background: var(--teal-suave); color: var(--teal); }
.benefit-text h4 { font-size: 1rem; font-weight: 700; color: var(--preto); margin-bottom: 5px; }
.benefit-text p  { font-size: .9rem; color: var(--cinza-60); line-height: 1.6; margin: 0; }

/* =====================================================
 * FOOTER
 * ===================================================== */
.footer {
    background: var(--preto);
    color: rgba(255,255,255,.7);
    padding: 64px 0 28px;
}
.footer-brand img  { height: 48px; margin-bottom: 16px; }
.footer-desc       { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.footer-social     { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: var(--trans);
}
.footer-social a:hover { background: var(--roxo); color: var(--branco); transform: translateY(-3px); }
.footer-social a.wa:hover { background: #25D366; }
.footer-social a.ig:hover { background: #E1306C; }
.footer-social a.fb:hover { background: #1877F2; }

.footer-heading { font-size: .82rem; font-weight: 700; color: var(--branco); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a   { color: rgba(255,255,255,.55); font-size: .9rem; transition: var(--trans); }
.footer-links a:hover { color: var(--teal-claro); padding-left: 4px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; color: rgba(255,255,255,.55); font-size: .9rem; }
.footer-contact i  { color: var(--teal-claro); margin-top: 2px; }
.footer-contact a  { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: var(--teal-claro); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 48px;
    padding-top: 24px;
}
.footer-bottom p { font-size: .84rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--teal-claro); }

/* =====================================================
 * WHATSAPP FLUTUANTE
 * ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--branco);
    padding: 14px 24px;
    border-radius: var(--raio-pill);
    font-family: var(--fonte-titulo);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--trans);
    border: none;
    letter-spacing: .01em;
}
.whatsapp-float a:hover {
    background: #128C7E;
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.whatsapp-float i { font-size: 1.4rem; }
@media (max-width: 767px) {
    .whatsapp-float a span { display: none; }
    .whatsapp-float a { padding: 16px; border-radius: 50%; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}

/* Pulso de atenção */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.1); }
    100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
}
.whatsapp-float a { animation: whatsapp-pulse 3s ease-in-out infinite; }

/* =====================================================
 * LOGIN / CADASTRO
 * ===================================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(140deg, var(--roxo-escuro) 0%, var(--roxo) 50%, var(--teal-escuro) 100%);
    padding: 40px 0;
    position: relative;
}
.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
}

.auth-card {
    background: var(--branco);
    border-radius: var(--raio-lg);
    box-shadow: 0 32px 80px rgba(26,26,46,.3);
    overflow: hidden;
    position: relative;
}
.auth-logo {
    text-align: center;
    padding: 36px 36px 28px;
    border-bottom: 1px solid var(--cinza-20);
}
.auth-logo img { height: 56px; margin: 0 auto 14px; }
.auth-logo h2 { font-size: 1.4rem; font-weight: 800; color: var(--preto); margin-bottom: 4px; }
.auth-logo p   { font-size: .9rem; color: var(--cinza-60); }

.auth-body { padding: 32px 36px; }
.auth-footer {
    padding: 20px 36px 32px;
    border-top: 1px solid var(--cinza-20);
    text-align: center;
}
.auth-footer p    { font-size: .9rem; color: var(--cinza-60); margin: 0; }
.auth-footer p + p { margin-top: 8px; }
.auth-footer a    { color: var(--roxo); font-weight: 700; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--cinza-40);
    font-size: .82rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cinza-20);
}

/* Labels flutuantes */
.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: var(--cinza-80);
    margin-bottom: 7px;
    display: block;
}

/* =====================================================
 * DASHBOARD
 * ===================================================== */
.dashboard-layout {
    display: flex;
    min-height: calc(100vh - var(--header-h));
}
.dashboard-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--branco);
    border-right: 1px solid var(--cinza-20);
    padding: 24px 0;
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
}
.sidebar-section-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--cinza-40);
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0 20px;
    margin: 20px 0 8px;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--cinza-60);
    font-size: .92rem;
    font-weight: 500;
    border-radius: 0;
    transition: var(--trans);
    position: relative;
}
.sidebar-link:hover { color: var(--roxo); background: var(--roxo-suave); }
.sidebar-link.active {
    color: var(--roxo);
    background: var(--roxo-suave);
    font-weight: 700;
}
.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--roxo);
    border-radius: 0 2px 2px 0;
}
.sidebar-link i { width: 20px; font-size: .95rem; }

.dashboard-content {
    flex: 1;
    padding: 32px;
    background: var(--cinza-10);
    min-height: calc(100vh - var(--header-h));
}

.dashboard-header { margin-bottom: 28px; }
.dashboard-header h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.dashboard-header p   { color: var(--cinza-60); font-size: .93rem; }

.stat-card {
    background: var(--branco);
    border-radius: var(--raio);
    padding: 24px;
    box-shadow: var(--sombra-xs);
    border: 1px solid var(--cinza-20);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--trans);
}
.stat-card:hover { box-shadow: var(--sombra-md); transform: translateY(-2px); }
.stat-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.stat-icon.roxo   { background: var(--roxo-suave); color: var(--roxo); }
.stat-icon.teal   { background: var(--teal-suave); color: var(--teal); }
.stat-icon.verde  { background: rgba(34,197,94,.1); color: var(--sucesso); }
.stat-icon.amarelo { background: rgba(245,158,11,.1); color: var(--aviso); }

.stat-info h4 { font-size: 1.9rem; font-weight: 800; margin: 0; color: var(--preto); line-height: 1; }
.stat-info p  { margin: 4px 0 0; color: var(--cinza-60); font-size: .85rem; }

/* Painel de conteúdo */
.panel {
    background: var(--branco);
    border-radius: var(--raio-lg);
    box-shadow: var(--sombra-xs);
    border: 1px solid var(--cinza-20);
    overflow: hidden;
    margin-bottom: 24px;
}
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--cinza-20);
}
.panel-title { font-size: 1rem; font-weight: 700; color: var(--preto); margin: 0; }
.panel-body { padding: 24px; }

/* =====================================================
 * TABELAS
 * ===================================================== */
.table { margin: 0; }
.table thead th {
    background: var(--cinza-10);
    border-bottom: 1px solid var(--cinza-20);
    font-size: .82rem;
    font-weight: 700;
    color: var(--cinza-60);
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 13px 20px;
}
.table tbody td { padding: 14px 20px; vertical-align: middle; border-color: var(--cinza-20); font-size: .92rem; }
.table tbody tr:hover { background: var(--cinza-00); }
.table tbody tr:last-child td { border-bottom: none; }

/* Badges de status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--raio-pill);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.status-pendente  { background: rgba(245,158,11,.1);  color: #92400E; }
.status-pendente::before  { background: var(--aviso); }
.status-confirmado { background: rgba(34,197,94,.1);  color: #166534; }
.status-confirmado::before { background: var(--sucesso); }
.status-cancelado  { background: rgba(239,68,68,.1);  color: #991B1B; }
.status-cancelado::before  { background: var(--perigo); }
.status-concluido  { background: rgba(106,76,147,.1); color: var(--roxo-escuro); }
.status-concluido::before  { background: var(--roxo); }

/* =====================================================
 * AGENDAMENTO
 * ===================================================== */
.time-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    margin: 5px;
    border-radius: var(--raio-sm);
    border: 1.5px solid var(--cinza-20);
    cursor: pointer;
    transition: var(--trans);
    font-weight: 600;
    font-size: .88rem;
    color: var(--cinza-80);
    background: var(--branco);
}
.time-slot:hover { border-color: var(--roxo); color: var(--roxo); background: var(--roxo-suave); }
.time-slot.selected { background: var(--roxo); border-color: var(--roxo); color: var(--branco); }
.time-slot.disabled { background: var(--cinza-10); border-color: var(--cinza-20); color: var(--cinza-40); cursor: not-allowed; }

/* =====================================================
 * PAGAMENTO PIX
 * ===================================================== */
.pix-box {
    background: var(--cinza-10);
    border-radius: var(--raio-lg);
    padding: 36px;
    text-align: center;
    border: 1px dashed var(--cinza-20);
}
.pix-qrcode-wrapper {
    width: 220px; height: 220px;
    margin: 0 auto 24px;
    background: var(--branco);
    padding: 16px;
    border-radius: var(--raio);
    box-shadow: var(--sombra-sm);
}
.pix-qrcode-wrapper img { width: 100%; height: 100%; object-fit: contain; }
.pix-code {
    background: var(--branco);
    border: 1px solid var(--cinza-20);
    border-radius: var(--raio-sm);
    padding: 14px;
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    word-break: break-all;
    color: var(--cinza-80);
    margin-bottom: 14px;
}

/* =====================================================
 * BLOG
 * ===================================================== */
.blog-card {
    background: var(--branco);
    border-radius: var(--raio-lg);
    overflow: hidden;
    border: 1px solid var(--cinza-20);
    transition: var(--trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-lg); border-color: transparent; }
.blog-card-img {
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--roxo-suave), var(--teal-suave));
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
    display: inline-block;
    background: var(--teal-suave);
    color: var(--teal-escuro);
    padding: 3px 10px;
    border-radius: var(--raio-pill);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--preto); margin-bottom: 10px; }
.blog-card p  { font-size: .88rem; color: var(--cinza-60); line-height: 1.65; flex: 1; }
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 18px;
    border-top: 1px solid var(--cinza-20);
}
.blog-read-more { color: var(--roxo); font-weight: 700; font-size: .88rem; }
.blog-read-more:hover { color: var(--roxo-escuro); }

/* =====================================================
 * PÁGINA SEO LOCAL
 * ===================================================== */
.city-hero {
    background: linear-gradient(140deg, var(--roxo-escuro), var(--roxo));
    padding: 80px 0 60px;
    color: var(--branco);
}
.city-hero h1 { color: var(--branco); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.city-hero p   { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; }

/* =====================================================
 * ALERTAS E FEEDBACK
 * ===================================================== */
.alert {
    border: none;
    border-radius: var(--raio-sm);
    padding: 14px 18px;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border-left: 4px solid;
}
.alert-success { background: rgba(34,197,94,.08); border-color: var(--sucesso); color: #166534; }
.alert-danger   { background: rgba(239,68,68,.08); border-color: var(--perigo);  color: #991B1B; }
.alert-warning  { background: rgba(245,158,11,.08); border-color: var(--aviso);  color: #92400E; }
.alert-info     { background: rgba(59,130,246,.08); border-color: var(--info);   color: #1E40AF; }

/* =====================================================
 * REVEAL ANIMATION
 * ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up  { animation: fadeInUp .6s ease-out both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
 * RESPONSIVIDADE
 * ===================================================== */

/* --- Tablet (≤ 991px) --- */
@media (max-width: 991px) {
    /* Dashboard sidebar horizontal */
    .dashboard-layout { flex-direction: column; }
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--cinza-20);
        padding: 12px 0;
        display: flex;
        overflow-x: auto;
    }
    .sidebar-link { white-space: nowrap; }
    .sidebar-section-label { display: none; }
    .dashboard-content { padding: 20px 16px; }

    /* Menu mobile dropdown */
    .navbar-collapse {
        background: var(--branco);
        padding: 16px;
        border-radius: var(--raio);
        box-shadow: var(--sombra-lg);
        margin-top: 12px;
        border: 1px solid var(--cinza-20);
    }

    /* Hero sem altura de tela cheia em tablet */
    .hero { min-height: auto; padding: 80px 0 60px; }

    /* Seções com menos padding */
    .section { padding: 70px 0; }
    .section-sm { padding: 40px 0; }

    /* Footer colunas */
    .footer { padding: 48px 0 24px; }
    .footer-bottom { margin-top: 32px; }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767px) {
    :root { --header-h: 66px; }

    /* Seções */
    .section    { padding: 52px 0; }
    .section-sm { padding: 32px 0; }

    /* Navbar logo menor */
    .navbar-brand img { height: 36px; }

    /* Hero: altura automática, padding menor, centralizado */
    .hero {
        min-height: auto;
        padding: 48px 0 44px;
        text-align: center;
    }
    .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero p  { font-size: 1rem; margin-left: auto; margin-right: auto; max-width: 340px; }
    .hero-eyebrow { margin: 0 auto 20px; }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .hero-stats   { justify-content: center; gap: 20px; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.6rem; }
    .hero-trust   { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .trust-badge  { font-size: .78rem; padding: 6px 14px; }

    /* Seção hero-card lateral já fica oculta via d-none d-lg-flex */

    /* Filtros */
    .filter-row   { flex-direction: column; }
    .filter-group { width: 100%; min-width: unset; }
    .filter-section { padding: 20px 16px; }

    /* Cards de psicólogos */
    .psychologist-card { margin-bottom: 0; }

    /* Section title */
    .section-title h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section-title p  { font-size: .93rem; }

    /* Auth pages */
    .auth-logo   { padding: 28px 20px 22px; }
    .auth-logo img { height: 44px; }
    .auth-body   { padding: 24px 20px; }
    .auth-footer { padding: 16px 20px 24px; }

    /* Footer mobile */
    .footer { padding: 40px 0 20px; }
    .footer-brand img { height: 38px; }
    .footer-desc  { font-size: .86rem; margin-bottom: 16px; }
    .footer-heading { margin-top: 8px; }
    .footer-bottom { margin-top: 24px; }
    .footer-bottom .row { text-align: center !important; }
    .footer-bottom .col-md-6:last-child { margin-top: 6px; }

    /* CTA section */
    .cta-section { padding: 60px 0; }
    .cta-section h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

    /* Panels / cards */
    .panel { border-radius: var(--raio); }
    .panel-body { padding: 18px 16px; }

    /* Tabela responsiva */
    .table { font-size: .82rem; }

    /* Depoimentos 1 por linha */
    .testimonials-section .col-md-6 { width: 100%; }

    /* City hero */
    .city-hero { padding: 48px 0 36px; }
    .city-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
}

/* --- Mobile pequeno (≤ 480px) --- */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-stat { min-width: 80px; text-align: center; }
    .btn-xl { padding: 16px 32px; font-size: 1rem; }
    .btn-lg { padding: 14px 28px; font-size: .95rem; }

    /* Step cards em coluna */
    .step-card { padding: 28px 20px; }

    /* Benefícios em coluna única */
    .benefit-item { gap: 12px; }
    .benefit-icon { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
}

/* =====================================================
 * UTILITÁRIOS
 * ===================================================== */
.text-roxo  { color: var(--roxo)  !important; }
.text-teal  { color: var(--teal)  !important; }
.text-muted { color: var(--cinza-60) !important; }
.bg-roxo    { background: var(--roxo)  !important; }
.bg-teal    { background: var(--teal)  !important; }
.fw-800     { font-weight: 800 !important; }
.rounded-xl { border-radius: var(--raio-lg) !important; }
.shadow-sm  { box-shadow: var(--sombra-sm) !important; }
.shadow-md  { box-shadow: var(--sombra-md) !important; }

/* Divisor decorativo */
.divider-gradient {
    height: 3px;
    background: linear-gradient(90deg, var(--roxo), var(--teal));
    border: none;
    margin: 0;
    border-radius: 2px;
}


/* =====================================================
 * ELO MENTE v3.0 — NOVOS ESTILOS (MULTIDISCIPLINAR)
 * ===================================================== */

/* ── Botão WhatsApp (inline cards) ── */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco) !important;
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,.30);
    font-weight: 700;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: var(--branco) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.40);
}

/* ── Botão "Seja um Profissional" ── */
.btn-profissional {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-escuro) 100%);
    color: var(--branco);
    border-color: var(--teal);
    box-shadow: var(--sombra-teal);
    font-weight: 700;
}
.btn-profissional:hover {
    background: linear-gradient(135deg, var(--teal-escuro) 0%, var(--teal) 100%);
    color: var(--branco);
    transform: translateY(-2px);
}

/* ── HERO: Dois botões grandes (Encontrar + Profissional) ── */
.hero-actions-dual {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: var(--raio-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
    font-family: var(--fonte-titulo);
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: #fff;
    color: var(--roxo);
    box-shadow: 0 8px 32px rgba(255,255,255,.25);
}
.btn-hero-primary:hover {
    background: var(--roxo-suave);
    color: var(--roxo-escuro);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,255,255,.35);
}
.btn-hero-primary i {
    font-size: 1.4rem;
    color: var(--roxo);
    flex-shrink: 0;
}

.btn-hero-secondary {
    background: rgba(44,166,164,.25);
    color: #fff;
    border-color: rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
    background: rgba(44,166,164,.4);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    transform: translateY(-3px);
}
.btn-hero-secondary i {
    font-size: 1.4rem;
    color: var(--teal-claro);
    flex-shrink: 0;
}

.btn-hero-primary span,
.btn-hero-secondary span {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.btn-hero-primary strong,
.btn-hero-secondary strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.btn-hero-primary small,
.btn-hero-secondary small {
    font-size: .78rem;
    font-weight: 400;
    opacity: .8;
    margin-top: 3px;
}

@media (max-width: 576px) {
    .hero-actions-dual { gap: 12px; }
    .btn-hero-primary,
    .btn-hero-secondary { min-width: 100%; justify-content: center; }
}

/* ── Area Chips (home + psicologos) ── */
.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--raio-pill);
    border: 2px solid;
    font-family: var(--fonte-titulo);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--trans);
    white-space: nowrap;
}

.area-chip-roxo {
    color: var(--roxo);
    border-color: var(--roxo-claro);
    background: var(--roxo-suave);
}
.area-chip-roxo:hover {
    background: var(--roxo);
    color: #fff;
    border-color: var(--roxo);
    transform: translateY(-2px);
    box-shadow: var(--sombra-roxo);
}

.area-chip-teal {
    color: var(--teal);
    border-color: #a0d9d8;
    background: var(--teal-suave);
}
.area-chip-teal:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--sombra-teal);
}

.area-chip-multi {
    color: var(--cinza-80);
    border-color: var(--cinza-20);
    background: var(--branco);
}
.area-chip-multi:hover {
    background: var(--cinza-80);
    color: #fff;
    border-color: var(--cinza-80);
    transform: translateY(-2px);
}

/* ── Area Filter Chips (psicologos.php) ── */
.area-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--raio-pill);
    border: 1.5px solid var(--cinza-20);
    background: var(--branco);
    color: var(--cinza-60);
    font-family: var(--fonte-titulo);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--trans);
    white-space: nowrap;
}
.area-filter-chip:hover {
    border-color: var(--roxo-claro);
    color: var(--roxo);
    background: var(--roxo-suave);
}
.area-filter-chip.active {
    background: var(--roxo);
    color: #fff;
    border-color: var(--roxo);
    box-shadow: var(--sombra-roxo);
}

/* ── Area Badge no Card (canto da foto) ── */
.area-badge-card {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(26,26,46,.75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: .02em;
    max-width: calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Equipe Multidisciplinar (index.php teaser) ── */
.equipe-teaser {
    background: linear-gradient(160deg, var(--cinza-00) 0%, var(--roxo-suave) 100%);
}

.equipe-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.equipe-card-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--branco);
    border-radius: var(--raio);
    padding: 16px;
    border: 1px solid var(--cinza-20);
    transition: var(--trans);
}
.equipe-card-item:hover {
    border-color: var(--roxo-claro);
    box-shadow: var(--sombra-sm);
    transform: translateY(-2px);
}

.equipe-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.equipe-card-item h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--preto);
}
.equipe-card-item p {
    font-size: .78rem;
    color: var(--cinza-60);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .equipe-cards-grid { grid-template-columns: 1fr; }
}

/* ── Auth header em cadastro.php ── */
.auth-header {
    text-align: center;
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--cinza-20);
}
.auth-header img { height: 48px; margin: 0 auto 12px; }
.auth-header h2  { font-size: 1.3rem; font-weight: 800; color: var(--preto); }

/* ── Psychologist card position fix ── */
.psychologist-image { position: relative; }

/* ── Seção multidisciplinar (equipe page) — hero gradient overrides ── */
.section-bg-branco { background: var(--branco); }

/* ── Mobile fixes ── */
@media (max-width: 991px) {
    .equipe-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 20px;
        min-width: 160px;
    }
    .btn-hero-primary strong,
    .btn-hero-secondary strong { font-size: .9rem; }

    .area-filter-chips { gap: 6px; }
    .area-filter-chip { font-size: .8rem; padding: 7px 14px; }
}


/* =====================================================
 * LOGO CSS — sem dependência de arquivo de imagem
 * Trocar por <img> quando tiver logo definitiva
 * ===================================================== */
.logo-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--roxo) 0%, var(--teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(106,76,147,.3);
    transition: var(--trans);
}
.logo-brand:hover .logo-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(106,76,147,.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-nome {
    font-family: var(--fonte-titulo);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--preto);
    letter-spacing: -.02em;
}
.logo-nome strong {
    font-weight: 800;
    background: linear-gradient(90deg, var(--roxo), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-slogan {
    font-family: var(--fonte-corpo);
    font-size: .65rem;
    color: var(--cinza-60);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Footer — logo branca */
.logo-brand-footer .logo-nome { color: rgba(255,255,255,.9); }
.logo-brand-footer .logo-nome strong {
    background: linear-gradient(90deg, #fff, var(--teal-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-brand-footer .logo-slogan { color: rgba(255,255,255,.4); }
.logo-brand-footer .logo-icon {
    background: rgba(255,255,255,.15);
    box-shadow: none;
}

/* Footer brand wrapper */
.footer-brand { margin-bottom: 18px; }

/* ── Como trocar pela logo de imagem quando tiver ──
   Basta substituir o bloco .logo-brand no header por:

   <a href="/" class="navbar-brand">
       <img src="/images/logo-new.png" alt="Elo Mente" style="height:44px;">
   </a>
   ─────────────────────────────────────────────────── */

/* =====================================================
 * PSI-CARD — Card horizontal de profissional (v2)
 * Usado na página /psicologos
 * ===================================================== */
.psi-card {
    background: var(--branco);
    border-radius: var(--raio-lg);
    border: 1px solid var(--cinza-20);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.psi-card:hover {
    box-shadow: var(--sombra-lg);
    border-color: var(--roxo-claro);
    transform: translateY(-3px);
}

/* Coluna esquerda: foto + preço */
.psi-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 18px;
    min-width: 150px;
    gap: 12px;
    background: var(--cinza-5);
    border-right: 1px solid var(--cinza-10);
    flex-shrink: 0;
}
.psi-card-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--roxo-claro);
    flex-shrink: 0;
}
.psi-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}
.psi-avatar-circle {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--roxo-suave) 0%, var(--teal-suave) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--roxo);
}
.psi-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(44,166,164,.1);
    color: var(--teal);
    border-radius: var(--raio-pill);
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.psi-online-badge i { font-size: .45rem; }
.psi-card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--roxo);
    font-family: var(--fonte-titulo);
    text-align: center;
    line-height: 1;
}
.psi-card-price small {
    display: block;
    font-size: .7rem;
    font-weight: 400;
    color: var(--cinza-60);
    margin-top: 3px;
}

/* Coluna direita: conteúdo */
.psi-card-body {
    flex: 1;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0; /* previne overflow */
}
.psi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.psi-card-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--preto);
    margin: 0 0 2px;
    line-height: 1.25;
    font-family: var(--fonte-titulo);
}
.psi-card-area {
    font-size: .8rem;
    color: var(--cinza-60);
    font-weight: 500;
    display: block;
}
.psi-card-crp {
    font-size: .76rem;
    color: var(--cinza-60);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

/* Chips de especialidade */
.psi-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.psi-tag {
    background: var(--roxo-suave);
    color: var(--roxo);
    border-radius: 20px;
    padding: 4px 13px;
    font-size: .76rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* Abordagem + faixa etária */
.psi-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: .82rem;
    color: var(--cinza-70);
    border-top: 1px solid var(--cinza-10);
    padding-top: 8px;
}
.psi-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.psi-card-meta i { color: var(--roxo); font-size: .85rem; }

/* Bio resumida */
.psi-card-bio strong {
    font-size: .82rem;
    color: var(--preto);
    font-weight: 700;
}
.psi-card-bio p {
    margin: 3px 0 0;
    font-size: .84rem;
    color: var(--cinza-70);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ações: botão + telefone */
.psi-card-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.psi-card-actions .btn-whatsapp {
    padding: 10px 22px;
    font-size: .88rem;
    width: auto;
}
.psi-card-tel {
    font-size: .82rem;
    color: var(--teal);
    font-weight: 600;
}

/* Avaliação no card */
.psi-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
}
.psi-stars { color: var(--estrela); font-size: .85rem; letter-spacing: .02em; }
.psi-rating-score { font-weight: 700; color: var(--preto); }
.psi-rating-count { color: var(--cinza-60); }

/* Link "Ver perfil" */
.psi-card-perfil-link {
    font-size: .82rem;
    color: var(--roxo);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    width: fit-content;
    transition: gap .2s;
}
.psi-card-perfil-link:hover {
    color: var(--roxo-escuro);
    gap: 8px;
}

/* Sem resultados */
.psi-empty {
    background: var(--branco);
    border-radius: var(--raio-lg);
    padding: 60px 30px;
    border: 1px solid var(--cinza-20);
    text-align: center;
}

/* =====================================================
 * PÁGINA DE PERFIL PÚBLICO DO PROFISSIONAL
 * ===================================================== */
.perfil-sidebar {
    background: var(--branco);
    border-radius: var(--raio-lg);
    border: 1px solid var(--cinza-20);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.perfil-foto-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--roxo-suave), var(--teal-suave));
    padding: 28px;
    display: flex;
    justify-content: center;
}
.perfil-foto-img {
    width: 150px; height: 150px;
    border-radius: var(--raio);
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--branco);
    box-shadow: var(--sombra);
}
.perfil-foto-placeholder {
    width: 150px; height: 150px;
    border-radius: var(--raio);
    background: rgba(106,76,147,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    color: var(--roxo);
    border: 4px solid var(--branco);
}
.perfil-online-dot {
    position: absolute;
    bottom: 20px; right: 20px;
    background: rgba(44,166,164,.15);
    color: var(--teal);
    border-radius: var(--raio-pill);
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 700;
}
.perfil-online-dot i { font-size: .45rem; }

/* Dados abaixo da foto */
.perfil-sidebar > *:not(.perfil-foto-wrap) { padding: 0 22px; }
.perfil-nome {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--preto);
    margin: 20px 0 4px;
    font-family: var(--fonte-titulo);
    line-height: 1.25;
    padding: 0 22px;
}
.perfil-area-label {
    display: block;
    font-size: .82rem;
    color: var(--cinza-60);
    font-weight: 500;
    padding: 0 22px;
    margin-bottom: 10px;
}
.perfil-crp {
    font-size: .8rem;
    color: var(--cinza-60);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.perfil-preco-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--roxo-suave);
    border-radius: var(--raio);
    padding: 12px 16px;
    margin: 0 22px 14px;
}
.perfil-preco-box > i {
    color: var(--roxo);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.perfil-preco-box small {
    display: block;
    font-size: .73rem;
    color: var(--cinza-60);
    line-height: 1;
    margin-bottom: 2px;
}
.perfil-preco-box strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--roxo);
    font-family: var(--fonte-titulo);
}
.perfil-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: .82rem;
}
.perfil-rating span { color: var(--estrela); }
.perfil-rating-text { color: var(--cinza-70); }
.perfil-rating-text em { font-style: normal; color: var(--cinza-60); }

.perfil-cidade {
    font-size: .82rem;
    color: var(--cinza-60);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.perfil-cta {
    padding: 16px 22px 0;
    border-top: 1px solid var(--cinza-10);
    margin-top: 6px;
}
.perfil-cta .btn-whatsapp { font-size: .9rem; padding: 12px; }
.perfil-tel {
    font-size: .8rem;
    color: var(--teal);
    font-weight: 600;
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.perfil-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 22px 22px;
    font-size: .76rem;
    color: var(--cinza-60);
}
.perfil-trust span { display: flex; align-items: center; gap: 5px; }
.perfil-trust i { color: var(--roxo); font-size: .75rem; }

/* Seções da coluna direita */
.perfil-section {
    background: var(--branco);
    border-radius: var(--raio-lg);
    border: 1px solid var(--cinza-20);
    padding: 22px 24px;
    margin-bottom: 16px;
}
.perfil-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.perfil-section-title i { color: var(--roxo); }

/* Tags da página de perfil */
.perfil-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.perfil-tag {
    background: var(--branco);
    border: 1.5px solid var(--cinza-20);
    color: var(--cinza-80);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 500;
    transition: border-color .2s, color .2s;
}
.perfil-tag:hover { border-color: var(--roxo-claro); color: var(--roxo); }

/* Abordagem + faixa etária */
.perfil-meta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 24px;
}
.perfil-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}
.perfil-meta-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--roxo-suave);
    color: var(--roxo);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.perfil-meta-item small {
    display: block;
    font-size: .72rem;
    color: var(--cinza-60);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1;
    margin-bottom: 3px;
}
.perfil-meta-item strong {
    font-size: .88rem;
    color: var(--preto);
    font-weight: 600;
}

/* Bio */
.perfil-bio {
    color: var(--cinza-70);
    font-size: .92rem;
    line-height: 1.75;
}
.perfil-bio p { margin-bottom: 14px; }
.perfil-bio p:last-child { margin-bottom: 0; }

/* Avaliações */
.perfil-avaliacoes { display: flex; flex-direction: column; gap: 14px; }
.perfil-avaliacao-item {
    padding: 14px 16px;
    background: var(--cinza-5);
    border-radius: var(--raio);
    border-left: 3px solid var(--estrela);
}
