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

    :root {
      --sky: #63c5da;
      --sky-dark: #3fa8be;
      --sky-deeper: #1e7d92;
      --sky-light: #d0eff6;
      --sky-pale: #f0fafd;
      --white: #ffffff;
      --ink: #1a2e35;
      --ink-soft: #3d5560;
      --mist: #e8f6fa;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 5vw;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(99,197,218,0.15);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(99,197,218,0.12); }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 2.35rem;
      font-weight: 600;
      color: var(--sky-deeper);
      letter-spacing: 0.01em;
      line-height: 1.2;
    }
    .nav-logo span { display: block; font-weight: 300; font-size: 0.78rem; letter-spacing: 0.12em; color: var(--sky-dark); text-transform: uppercase; font-family: var(--font-body); }

    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a {
      text-decoration: none;
      color: var(--ink-soft);
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sky-dark); }

    .btn-nav {
      background: var(--sky);
      color: var(--white) !important;
      padding: 0.55rem 1.4rem;
      border-radius: 100px;
      font-weight: 500 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .btn-nav:hover { background: var(--sky-dark) !important; transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--sky-deeper); border-radius: 2px; transition: 0.3s; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 5vw;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--sky-pale) 0%, var(--mist) 50%, #c8eaf4 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,197,218,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -15%;
      left: -5%;
      width: 40vw;
      height: 40vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,197,218,0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding-top: 80px;
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky-dark);
      background: rgba(99,197,218,0.12);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--sky-deeper);
    }

    .hero p {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--sky);
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(99,197,218,0.35);
    }
    .btn-primary:hover {
      background: var(--sky-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(99,197,218,0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--sky-deeper);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: gap 0.2s;
    }
    .btn-secondary:hover { gap: 0.8rem; }
    .btn-secondary svg { transition: transform 0.2s; }
    .btn-secondary:hover svg { transform: translateX(3px); }

    .hero-image {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-img-frame {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 3/4;
      border-radius: 2px 120px 2px 120px;
      overflow: hidden;
      background: var(--mist);
      position: relative;
    }

    .hero-img-frame img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }

    .img-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: var(--sky-dark);
      font-size: 0.8rem;
      font-family: var(--font-body);
      letter-spacing: 0.05em;
    }

    .img-placeholder svg { opacity: 0.4; }

    .hero-badge {
      position: absolute;
      bottom: 2rem;
      left: -1.5rem;
      background: var(--white);
      border-radius: 1rem;
      padding: 1rem 1.25rem;
      box-shadow: 0 8px 32px rgba(30,125,146,0.12);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.82rem;
    }

    .hero-badge .icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sky-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .hero-badge strong { display: block; font-weight: 500; color: var(--ink); }
    .hero-badge span { color: var(--ink-soft); font-size: 0.75rem; }

    /* ─── SECTION GENERIC ─── */
    section { padding: 6rem 5vw; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sky-dark);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 1.25rem;
    }

    .section-title em { font-style: italic; color: var(--sky-deeper); }

    .section-sub {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 580px;
    }

    /* ─── SOBRE NÓS ─── */
    #sobre { background: var(--white); }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-top: 4rem;
    }

    /* Cards dos psicólogos dentro do sobre */
    .sobre-psicologos {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .sobre-psicologo-card {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      background: var(--sky-pale);
      border: 1px solid rgba(99,197,218,0.18);
      border-radius: 1.25rem;
      padding: 1.1rem 1.25rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .sobre-psicologo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(99,197,218,0.18);
    }

    .sobre-psico-foto {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--sky-light);
      flex-shrink: 0;
      border: 3px solid var(--white);
      box-shadow: 0 2px 10px rgba(99,197,218,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sobre-psico-foto img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    .sobre-psico-foto-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.25rem;
      color: var(--sky-dark);
      font-size: 0.65rem;
    }

    .sobre-psico-info { flex: 1; min-width: 0; }

    .sobre-psico-nome {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 0.15rem;
    }

    .sobre-psico-crp {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--sky-dark);
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .sobre-psico-bio {
      font-size: 0.82rem;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    .sobre-text .section-title { margin-bottom: 1.5rem; }

    .sobre-body {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--ink-soft);
      margin-bottom: 2rem;
    }

    .sobre-body p + p { margin-top: 1rem; }

    .sobre-valores {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }

    .sobre-valor {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .sobre-valor-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--sky-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .sobre-valor-icon svg { color: var(--sky-deeper); }

    .sobre-valor-text strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }

    .sobre-valor-text span {
      font-size: 0.85rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ─── ÁREAS DE ATUAÇÃO ─── */
    #areas-atuacao { background: var(--sky-pale); }

    .esp-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3.5rem;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .card {
      background: var(--white);
      border-radius: 1.25rem;
      padding: 2rem;
      transition: transform 0.25s, box-shadow 0.25s;
      border: 1px solid rgba(99,197,218,0.12);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(99,197,218,0.18);
    }

    .card-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--sky-light);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }

    .card-icon svg { color: var(--sky-deeper); }

    .card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }

    .card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    /* ─── COMO FUNCIONA ─── */
    #como-funciona { background: var(--white); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 4rem;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: calc(12.5% + 1rem);
      right: calc(12.5% + 1rem);
      height: 1px;
      background: linear-gradient(90deg, var(--sky-light), var(--sky), var(--sky-light));
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--sky);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 300;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(99,197,218,0.35);
    }

    .step h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
    }

    .step p {
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    /* ─── ABORDAGEM ─── */
    #abordagem {
      background: linear-gradient(135deg, var(--sky-deeper) 0%, var(--sky-dark) 100%);
      color: var(--white);
    }

    #abordagem .section-label { color: var(--sky-light); }
    #abordagem .section-title { color: var(--white); }
    #abordagem .section-title em { color: var(--sky-light); }
    #abordagem .section-sub { color: rgba(255,255,255,0.75); }

    .abordagem-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .abordagem-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .abordagem-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .abordagem-item-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: rgba(255,255,255,0.25);
      line-height: 1;
      min-width: 2.5rem;
    }

    .abordagem-item-text strong {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .abordagem-item-text span {
      font-size: 0.88rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.7);
    }

    /* ─── FAQ ─── */
    #faq { background: var(--sky-pale); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 3.5rem;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid rgba(99,197,218,0.15);
      border-radius: 1.25rem;
      overflow: hidden;
      transition: box-shadow 0.25s;
    }

    .faq-item:hover {
      box-shadow: 0 8px 32px rgba(99,197,218,0.14);
    }

    .faq-item.open {
      border-color: rgba(99,197,218,0.35);
      box-shadow: 0 8px 32px rgba(99,197,218,0.14);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.4rem 1.75rem;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
    }

    .faq-question h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
    }

    .faq-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--sky-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }

    .faq-icon svg { color: var(--sky-deeper); transition: transform 0.3s; }

    .faq-item.open .faq-icon { background: var(--sky); }
    .faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-answer-inner {
      padding: 0 1.75rem 1.4rem;
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--ink-soft);
      border-top: 1px solid rgba(99,197,218,0.12);
      padding-top: 1.1rem;
    }

    .faq-item.open .faq-answer { max-height: 300px; }

    @media (max-width: 768px) {
      .faq-grid { grid-template-columns: 1fr; }
    }

    /* ─── CTA FINAL ─── */
    #contato {
      background: var(--sky-pale);
      text-align: center;
    }

    #contato .section-inner {
      max-width: 700px;
    }

    #contato .section-title { margin-bottom: 1rem; }
    #contato .section-sub { max-width: 100%; margin: 0 auto 2.5rem; }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--sky-deeper);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1.5px solid var(--sky);
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover {
      background: var(--sky);
      color: var(--white);
    }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.88rem;
      color: var(--ink-soft);
    }

    .contact-item svg { color: var(--sky-dark); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.6);
      padding: 3rem 5vw;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
    }

    .footer-logo span {
      display: block;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sky);
      margin-top: 2px;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--sky); }

    .footer-copy { font-size: 0.78rem; }

    .footer-disclaimer {
      max-width: 1200px;
      margin: 1.75rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .footer-disclaimer p {
      font-size: 0.74rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.35);
    }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      z-index: 200;
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: pulse-wa 2.5s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
      animation: none;
    }

    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
    }

    /* ─── MOBILE NAV ─── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      text-decoration: none;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--ink);
    }

    .mobile-menu a.btn-primary { font-family: var(--font-body); font-size: 1rem; }

    .mobile-close {
      position: absolute;
      top: 1.5rem; right: 5vw;
      background: none; border: none; cursor: pointer;
      font-size: 1.5rem; color: var(--ink);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; padding-top: 100px; }
      .hero-image { order: -1; }
      .hero-img-frame { max-width: 320px; }
      .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
      .cards-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
      .abordagem-inner { grid-template-columns: 1fr; gap: 3rem; }
      .depo-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .esp-header { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .cards-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      section { padding: 4rem 5vw; }
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

