/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ==========================================================================
   Variables
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-Latin-Variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/CormorantGaramond-Latin-Italic-Variable.woff2') format('woff2');
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/DMSans-Latin-Variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
      --sage: #557461;
      --sage-light: #a8c4b0;
      --sage-pale: #eaf1ec;
      --apricot: #f4bd7a;
      --apricot-pale: #fff0d8;
      --blue: #3d6477;
      --blue-pale: #e2f0f3;
      --slate: #3d5a6c;
      --slate-dark: #243340;
      --cream: #f7f4ef;
      --cream-dark: #ede8e0;
      --text: #2a2a2a;
      --text-muted: #6b7280;
      --white: #ffffff;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

/* ==========================================================================
   Base
   ========================================================================== */

html { scroll-behavior: smooth; font-size: 16px; }

body {
      font-family: var(--font-body);
      color: var(--text);
      background-color: var(--cream);
      background-image: radial-gradient(rgba(61, 90, 108, 0.12) 0.55px, transparent 0.7px);
      background-size: 9px 9px;
      overflow-x: hidden;
    }

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--slate-dark);
}

/* ==========================================================================
   Layout
   ========================================================================== */

/* ── NAV ── */
    #main-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5vw;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(247, 244, 239, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(122, 158, 135, 0.15);
      transition: box-shadow var(--transition);
    }

    #main-nav.scrolled { box-shadow: 0 2px 24px rgba(36, 51, 64, 0.08); }

    .nav-brand {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--slate-dark);
      letter-spacing: 0.04em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color var(--transition);
    }

    .nav-links a:hover { color: var(--sage); }

    .nav-cta {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--sage);
      text-decoration: none;
      padding: 0.6rem 1.4rem;
      border-radius: 3px 9px 4px 7px;
      transition: background var(--transition);
    }

    .nav-cta:hover { background: var(--slate); }

    .burger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      min-width: 44px;
      min-height: 44px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--slate-dark);
      transition: var(--transition);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--cream);
      border-bottom: 1px solid var(--cream-dark);
      padding: 1.5rem 5vw 2rem;
      z-index: 99;
      flex-direction: column;
      gap: 1.2rem;
    }

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

    .mobile-menu a {
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
    }

    .mobile-menu .mob-cta {
      margin-top: 0.5rem;
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--sage);
      text-decoration: none;
      padding: 0.7rem 1.6rem;
      border-radius: 2px;
      align-self: flex-start;
    }

/* ── HERO ── */
    #inicio {
      height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 68px;
      overflow: hidden;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6vw 4vw 6vw 8vw;
    }

    .hero-tag {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1.5rem;
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(3rem, 4.6vw, 5rem);
      font-weight: 300;
      line-height: 1.04;
      color: var(--slate-dark);
      letter-spacing: -0.01em;
      margin-bottom: 1.75rem;
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.4vw, 1.12rem);
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 52ch;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--sage);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 3px 11px 4px 8px;
      transition: background var(--transition), transform var(--transition);
    }

    .btn-primary:hover { background: var(--slate); transform: translateY(-2px); }

    .btn-secondary {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--slate);
      background: transparent;
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 10px 3px 8px 4px;
      border: 1.5px solid var(--cream-dark);
      transition: border-color var(--transition), color var(--transition);
    }

    .btn-secondary:hover { border-color: var(--sage); color: var(--sage); }

    .hero-location {
      margin-top: 2.5rem;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-location::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 1px;
      background: var(--sage-light);
    }

    .hero-visual {
      position: relative;
      overflow: hidden;
      background-color: var(--apricot-pale);
      background-image: radial-gradient(rgba(61, 100, 119, 0.16) 0.7px, transparent 0.7px);
      background-size: 12px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-logo {
      display: block;
      width: min(78%, 420px);
      height: auto;
      object-fit: contain;
      mix-blend-mode: multiply;
      filter: saturate(0.92) contrast(1.03);
    }

/* ── SECTION BASE ── */
    section { position: relative; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(5.75rem, 9vw, 8rem) 5vw clamp(6.25rem, 10vw, 8.5rem);
    }

    .section-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 1rem;
      padding-bottom: 0.38rem;
      border-bottom: 1px solid currentColor;
      transform: rotate(-1deg);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--slate-dark);
      letter-spacing: -0.01em;
      margin-bottom: 2rem;
    }

    .section-title em { font-style: italic; color: var(--sage); }

/* ── FOOTER ── */
    #site-footer {
      padding: 0;
      background: var(--slate-dark);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 5vw 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr 0.8fr;
      gap: clamp(2.5rem, 6vw, 6rem);
    }

    .footer-brand {
      display: inline-block;
      margin-bottom: 1.25rem;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--white);
      text-decoration: none;
    }

    .footer-brand-block > p {
      max-width: 38ch;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(247, 244, 239, 0.66);
    }

    .footer-contact {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--sage-light);
      text-decoration: none;
    }

    .footer-column h2 {
      margin-bottom: 1.5rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-light);
    }

    .footer-details {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .footer-details div { display: grid; gap: 0.2rem; }

    .footer-details dt {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(247, 244, 239, 0.4);
    }

    .footer-details dd {
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.45;
      color: rgba(247, 244, 239, 0.78);
    }

    .footer-legal-nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.45rem;
    }

    .footer-link {
      min-height: 44px;
      padding: 0;
      border: 0;
      background: transparent;
      font: inherit;
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(247, 244, 239, 0.72);
      text-align: left;
      cursor: pointer;
      transition: color var(--transition);
    }

    .footer-link:hover,
    .footer-link:focus-visible,
    .footer-contact:hover,
    .footer-brand:hover { color: var(--white); }

    .footer-consumer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      margin-top: 3.5rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.09);
    }

    .footer-consumer-links a {
      padding: 1.35rem 1.5rem;
      background: rgba(255, 255, 255, 0.025);
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(247, 244, 239, 0.75);
      text-decoration: none;
      transition: background var(--transition), color var(--transition);
    }

    .footer-consumer-links a:hover {
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
    }

    .footer-consumer-links span {
      display: block;
      margin-bottom: 0.25rem;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-light);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom p {
      font-size: 0.72rem;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(247, 244, 239, 0.42);
    }

    .footer-bottom a {
      color: var(--sage-light);
      text-decoration: none;
    }

/* ── LEGAL MODALS ── */
    body.modal-open { overflow: hidden; }

    .legal-modal {
      width: min(780px, calc(100vw - 2rem));
      max-height: min(82vh, 820px);
      margin: auto;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 6px;
      background: var(--cream);
      color: var(--text);
      box-shadow: 0 30px 80px rgba(10, 18, 24, 0.35);
    }

    .legal-modal::backdrop {
      background: rgba(22, 32, 39, 0.74);
      backdrop-filter: blur(4px);
    }

    .legal-modal-card {
      display: flex;
      max-height: min(82vh, 820px);
      flex-direction: column;
    }

    .legal-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      padding: 2rem 2.5rem 1.5rem;
      border-bottom: 1px solid var(--cream-dark);
      background: var(--white);
    }

    .legal-modal-kicker {
      margin-bottom: 0.45rem;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .legal-modal-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--slate-dark);
    }

    .legal-modal-close {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      border: 1px solid var(--cream-dark);
      border-radius: 50%;
      background: var(--cream);
      font-family: Arial, sans-serif;
      font-size: 1.7rem;
      font-weight: 300;
      line-height: 1;
      color: var(--slate-dark);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }

    .legal-modal-close:hover { background: var(--slate-dark); color: var(--white); }

    .legal-modal-close:focus-visible {
      outline-color: var(--sage);
      box-shadow: none;
    }

    .legal-modal-content {
      padding: 2rem 2.5rem 2.75rem;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .legal-modal-content h3 {
      margin: 2rem 0 0.65rem;
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--slate-dark);
    }

    .legal-modal-content h3:first-of-type { margin-top: 0; }

    .legal-modal-content p,
    .legal-data-list dd,
    .legal-data-list dt {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.75;
      color: #4a4a4a;
    }

    .legal-modal-content p + p { margin-top: 0.85rem; }

    .legal-modal-content a {
      color: var(--sage);
      text-underline-offset: 0.18em;
    }

    .legal-updated {
      margin-bottom: 1.75rem;
      font-size: 0.75rem !important;
      color: var(--text-muted) !important;
    }

    .legal-data-list {
      display: grid;
      margin: 1rem 0 0;
      border-top: 1px solid var(--cream-dark);
    }

    .legal-data-list div {
      display: grid;
      grid-template-columns: 11rem 1fr;
      gap: 1rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--cream-dark);
    }

    .legal-data-list dt { color: var(--text-muted); }
    .legal-data-list dd { color: var(--slate-dark); }

/* ==========================================================================
   Components
   ========================================================================== */

/* ── SOBRE ── */
    #sobre {
      background-color: var(--white);
      background-image: linear-gradient(115deg, rgba(244, 189, 122, 0.08), transparent 42%);
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .sobre-text p {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: #4a4a4a;
      margin-bottom: 1.4rem;
    }

    .sobre-text p:last-child { margin-bottom: 0; }

    .sobre-visual {
      position: relative;
    }

    .sobre-photo-wrap {
      position: relative;
    }

    .sobre-photo-wrap::before {
      content: '';
      position: absolute;
      top: -12px; left: -12px;
      width: 100%; height: 100%;
      border: 1.5px solid var(--sage-light);
      border-radius: 7px 23px 5px 18px;
      pointer-events: none;
      z-index: 0;
    }

    .sobre-photo {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center center;
      border-radius: 18px 4px 23px 6px;
      display: block;
    }

    .margin-note {
      position: absolute;
      z-index: 2;
      bottom: -1.2rem;
      left: -1.4rem;
      max-width: 12rem;
      padding: 0.75rem 0.9rem;
      font-family: var(--font-display);
      font-size: 1.22rem;
      font-style: italic;
      line-height: 1.05;
      color: var(--slate-dark);
      background: var(--apricot);
      box-shadow: 4px 5px 0 rgba(36, 51, 64, 0.16);
      transform: rotate(-4deg);
    }

/* ── PERCURSO ── */
    #percurso {
      background-color: var(--sage-pale);
      background-image: radial-gradient(rgba(85, 116, 97, 0.14) 0.55px, transparent 0.75px);
      background-size: 10px 10px;
    }

    .percurso-heading {
      max-width: 780px;
    }

    .percurso-heading > p:last-child {
      max-width: 68ch;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: #4a4a4a;
    }

    .credenciais-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .credencial-card {
      min-height: 210px;
      padding: 2.5rem;
      background: var(--white);
      border-top: 3px solid var(--sage);
      border-radius: 17px 4px 20px 7px;
      box-shadow: 5px 7px 0 rgba(85, 116, 97, 0.08);
    }

    .credencial-card:first-child { transform: rotate(-0.45deg); }
    .credencial-card--accent { margin-top: 0.8rem; transform: rotate(0.5deg); }

    .credencial-card--accent {
      color: var(--cream);
      background: var(--slate-dark);
      border-top-color: var(--sage-light);
    }

    .credencial-kicker,
    .percurso-label {
      margin-bottom: 1.25rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .credencial-card--accent .credencial-kicker { color: var(--sage-light); }

    .credencial-card h3 {
      max-width: 18ch;
      margin-bottom: 0.75rem;
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.6vw, 2.25rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--slate-dark);
    }

    .credencial-card--accent h3 { color: var(--cream); }

    .credencial-card > p:not(.credencial-kicker) {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .credencial-card .credencial-meta {
      margin-top: 0.4rem;
      color: var(--sage);
    }

    .credencial-card--accent > p.cedula-number {
      font-size: clamp(1.2rem, 2.5vw, 1.65rem);
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--sage-light);
    }

    .percurso-columns {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .percurso-panel {
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(85, 116, 97, 0.14);
      border-radius: 5px 19px 7px 16px;
    }

    .percurso-panel--dark {
      color: var(--cream);
      background: var(--sage);
      border-color: transparent;
    }

    .percurso-panel--dark .percurso-label { color: rgba(255, 255, 255, 0.7); }

    .percurso-list,
    .experiencia-list {
      list-style: none;
    }

    .percurso-list li {
      display: grid;
      grid-template-columns: 7rem 1fr;
      gap: 1.25rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(85, 116, 97, 0.14);
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.55;
      color: #4a4a4a;
    }

    .percurso-list li:first-child { padding-top: 0; }
    .percurso-list li:last-child { padding-bottom: 0; border-bottom: 0; }

    .percurso-date {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--sage);
    }

    .percurso-period {
      margin-bottom: 1.5rem;
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--white);
    }

    .experiencia-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .experiencia-list li {
      padding-left: 1rem;
      border-left: 2px solid var(--sage-light);
    }

    .experiencia-list strong,
    .experiencia-list span {
      display: block;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .experiencia-list strong { font-weight: 500; color: var(--white); }
    .experiencia-list span { margin-top: 0.2rem; font-weight: 300; color: rgba(255, 255, 255, 0.72); }

    .atendimento-atual {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .atendimento-atual p {
      margin-bottom: 0.45rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-light);
    }

    .atendimento-atual span {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.82);
    }

/* ── ÁREAS ── */
    #areas {
      background-color: var(--cream);
      background-image: linear-gradient(90deg, rgba(61, 100, 119, 0.045) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .areas-intro {
      max-width: 68ch;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: #4a4a4a;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .area-card {
      border-radius: 22px 5px 18px 7px;
      padding: 2.5rem;
      border: 1px solid transparent;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .area-card:hover {
      transform: translateY(-5px) rotate(-0.6deg);
      box-shadow: 8px 10px 0 rgba(36, 51, 64, 0.14);
    }

    .area-card--child { background: var(--apricot-pale); border-color: var(--apricot); }
    .area-card--adult { background: var(--blue-pale); border-color: #84aebb; }

    .area-population {
      display: inline-block;
      margin-bottom: 1.4rem;
      padding: 0.4rem 0.7rem;
      border-radius: 99px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .area-card--child .area-population { color: #7e4b10; background: rgba(244, 189, 122, 0.35); }
    .area-card--adult .area-population { color: var(--blue); background: rgba(132, 174, 187, 0.28); }

    .area-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 1.5rem;
      color: var(--sage);
    }

    .area-card--child .area-icon { color: #b66d18; }
    .area-card--adult .area-icon { color: var(--blue); }

    .area-card h3 {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 500;
      color: var(--slate-dark);
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .area-card p {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .area-card .area-detail {
      margin-top: 1.25rem;
      padding-top: 1.15rem;
      border-top: 1px dashed rgba(126, 75, 16, 0.36);
    }

    .area-detail strong { color: var(--slate-dark); font-weight: 500; }

/* ── CONSULTORIA ── */
    #consultoria {
      background-color: var(--white);
      background-image: linear-gradient(135deg, transparent 0 94%, rgba(85, 116, 97, 0.045) 94% 100%);
      background-size: 18px 18px;
    }

    .consultoria-heading {
      max-width: 760px;
    }

    .consultoria-heading > p:last-child {
      max-width: 68ch;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: #4a4a4a;
    }

    .consultoria-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .consultoria-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 2rem;
    }

    .consultoria-meta span {
      padding: 0.55rem 0.8rem;
      border: 1px solid rgba(85, 116, 97, 0.22);
      border-radius: 10px 3px 9px 4px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--sage);
      background: var(--sage-pale);
    }

    .consultoria-note {
      max-width: 72ch;
      margin-top: 1rem;
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .consultoria-card {
      padding: 2.5rem;
      background: var(--sage-pale);
      border-radius: 4px 19px 7px 16px;
      border: 1px solid rgba(122, 158, 135, 0.18);
      box-shadow: 4px 5px 0 rgba(85, 116, 97, 0.06);
    }

    .consultoria-card:nth-child(2) { margin-top: 0.85rem; transform: rotate(0.35deg); }

    .consultoria-format {
      margin-bottom: 1rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .consultoria-card h3,
    .consultoria-action h3 {
      font-family: var(--font-display);
      font-size: 1.55rem;
      font-weight: 500;
      line-height: 1.3;
      color: var(--slate-dark);
    }

    .consultoria-card h3 {
      margin-bottom: 1rem;
    }

    .consultoria-card > p:last-child,
    .consultoria-action p {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-muted);
    }

    .consultoria-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      list-style: none;
    }

    .consultoria-list li {
      position: relative;
      padding-left: 1.15rem;
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .consultoria-list li::before {
      content: '';
      position: absolute;
      top: 0.65em;
      left: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sage);
    }

    .consultoria-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      margin-top: 1.5rem;
      padding: 2.25rem 2.5rem;
      background: var(--cream);
      border-left: 3px solid var(--sage);
      border-radius: 3px 20px 6px 15px;
    }

    .consultoria-action > div { max-width: 60ch; min-width: 0; }

    .consultoria-action h3 {
      margin-bottom: 0.5rem;
    }

    .consultoria-action .btn-primary {
      flex-shrink: 0;
    }

/* ── TERAPIA DA FALA ── */
    #terapia { background: var(--slate-dark); }

    #terapia .section-title { color: var(--cream); }
    #terapia .section-tag { color: var(--sage-light); }

    .terapia-intro {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(247,244,239,0.7);
      max-width: 70ch;
      margin-bottom: 4rem;
    }

    .terapia-blocks {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.08);
      border-radius: 4px 20px 6px 17px;
      overflow: hidden;
    }

    .terapia-block {
      background: rgba(36, 51, 64, 0.6);
      padding: 2.5rem;
      backdrop-filter: blur(4px);
    }

    .terapia-block h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }

    .terapia-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .terapia-list li {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(247,244,239,0.65);
      line-height: 1.5;
      padding-left: 1.2rem;
      position: relative;
    }

    .terapia-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sage-light);
    }

/* ── ABORDAGEM ── */
    #abordagem {
      background-color: var(--cream);
      background-image: radial-gradient(rgba(244, 189, 122, 0.24) 0.6px, transparent 0.8px);
      background-size: 11px 11px;
    }

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

    .abordagem-quote-wrap {
      position: relative;
      padding: 3.5rem;
      background: var(--sage-pale);
      border-radius: 22px 4px 18px 7px;
      transform: rotate(-0.65deg);
    }

    .abordagem-quote-mark {
      font-family: var(--font-display);
      font-size: 8rem;
      font-weight: 300;
      color: var(--sage-light);
      line-height: 0.6;
      display: block;
      margin-bottom: 1.5rem;
      opacity: 0.5;
    }

    .abordagem-quote-text {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2vw, 1.7rem);
      font-weight: 400;
      font-style: italic;
      color: var(--slate);
      line-height: 1.55;
    }

    .abordagem-text p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: #4a4a4a;
      margin-bottom: 1.4rem;
    }

    .abordagem-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .pillar {
      padding: 1.2rem 1.4rem;
      background: var(--white);
      border-radius: 3px 12px 4px 10px;
      border-left: 3px solid var(--sage);
    }

    .pillar span {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--slate-dark);
    }

/* ── CONTACTO ── */
    #contacto {
      background-color: var(--white);
      background-image: linear-gradient(105deg, rgba(61, 100, 119, 0.055), transparent 35%);
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contacto-info { display: flex; flex-direction: column; gap: 2rem; }

    .contacto-item h4 {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.5rem;
    }

    .contacto-item a,
    .contacto-item p {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--slate-dark);
      text-decoration: none;
      transition: color var(--transition);
    }

    .contacto-item a:hover { color: var(--sage); }

    .contacto-cta {
      align-self: flex-start;
      margin-top: 0.5rem;
    }

    .contacto-location {
      min-height: 340px;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      background: var(--sage-pale);
      border: 1px solid rgba(85, 116, 97, 0.2);
      border-radius: 5px 23px 7px 19px;
      transform: rotate(0.4deg);
    }

    .location-marker {
      position: relative;
      width: 42px;
      height: 42px;
      margin-bottom: 1.75rem;
      border: 1.5px solid var(--sage);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
    }

    .location-marker::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 9px;
      height: 9px;
      background: var(--sage);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .location-eyebrow {
      margin-bottom: 0.65rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .contacto-location h3 {
      margin-bottom: 0.85rem;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 500;
      color: var(--slate-dark);
    }

    .contacto-location > p:not(.location-eyebrow) {
      max-width: 42ch;
      margin-bottom: 1.75rem;
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .location-link {
      border-color: rgba(85, 116, 97, 0.45);
    }

/* ── CTA FLUTUANTE MOBILE ── */
    .float-cta {
      display: none;
      position: fixed;
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 90;
      background: var(--sage);
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 1.5rem;
      border-radius: 40px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(85, 116, 97, 0.35);
      transition: background var(--transition), transform var(--transition), opacity var(--transition);
    }

    .float-cta:hover { background: var(--slate); transform: translateY(-2px); }

    .float-cta.is-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
    }

/* ==========================================================================
   Animations
   ========================================================================== */

/* ── REVEAL ANIMATION ── */
    .reveal {
      opacity: 1;
      transform: none;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      #inicio {
        height: 100svh;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
      }
      .hero-content { padding: 1.25rem 7vw 0.75rem; }
      .hero-tag { margin-bottom: 0.5rem; font-size: 0.68rem; }
      .hero-name { margin-bottom: 0.65rem; font-size: clamp(2.45rem, 6vw, 3rem); }
      .hero-tagline { margin-bottom: 0.85rem; font-size: 0.95rem; line-height: 1.5; }
      .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 3rem;
        padding: 0.6rem;
        text-align: center;
      }
      .hero-location { margin-top: 0.75rem; }
      .hero-visual { height: auto; min-height: 0; }
      .hero-logo { width: auto; max-width: 65%; max-height: 70%; }
      .sobre-grid,
      .abordagem-layout,
      .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
      .credenciais-grid,
      .percurso-columns { grid-template-columns: 1fr; }
      .areas-grid { grid-template-columns: 1fr; }
      .consultoria-grid { grid-template-columns: 1fr; }
      .consultoria-action { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
      .terapia-blocks { grid-template-columns: 1fr; }
      .abordagem-pillars { grid-template-columns: 1fr; }
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      .float-cta { display: block; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand-block { grid-column: 1 / -1; }
      .sobre-card::before { display: none; }
      .margin-note { right: 1.25rem; left: auto; bottom: -0.85rem; }
      .credencial-card:first-child,
      .credencial-card--accent,
      .consultoria-card:nth-child(2),
      .abordagem-quote-wrap,
      .contacto-location { margin-top: 0; transform: none; }
    }

    @media (max-width: 600px) {
      .section-inner { padding: 5rem 5vw; }
      #inicio {
        height: 100svh;
        min-height: 0;
        grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
      }
      .hero-content { padding: 0.75rem 6vw 0.55rem; }
      .hero-tag { margin-bottom: 0.4rem; font-size: 0.65rem; }
      .hero-name { margin-bottom: 0.5rem; font-size: clamp(2.2rem, 9vw, 2.65rem); }
      .hero-tagline { margin-bottom: 0.7rem; font-size: 0.875rem; line-height: 1.45; }
      .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        padding: 0.55rem 0.45rem;
        font-size: 0.68rem;
        line-height: 1.2;
        text-align: center;
      }
      .hero-location { margin-top: 0.6rem; font-size: 0.64rem; letter-spacing: 0.06em; }
      .hero-location::before { width: 14px; }
      .hero-visual { height: auto; min-height: 0; }
      .hero-logo { width: auto; max-width: 65%; max-height: 70%; }
      .contacto-location { padding: 2.25rem; }
      .credencial-card,
      .percurso-panel { padding: 2rem; }
      .percurso-list li { grid-template-columns: 1fr; gap: 0.35rem; }
      .footer-inner { padding: 4rem 5vw 6.5rem; }
      .footer-grid,
      .footer-consumer-links { grid-template-columns: 1fr; }
      .footer-brand-block { grid-column: auto; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
      .legal-modal { width: calc(100vw - 1rem); max-height: calc(100vh - 1rem); }
      .legal-modal-card { max-height: calc(100vh - 1rem); }
      .legal-modal-header { padding: 1.5rem 1.25rem 1.1rem; }
      .legal-modal-content { padding: 1.5rem 1.25rem 2rem; }
      .legal-data-list div { grid-template-columns: 1fr; gap: 0.1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }

      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
