    /* ════════════════════════════════════════
       TOKENS — extraídos da identidade visual
    ════════════════════════════════════════ */
    :root {
      --bg:      #0B100E;
      --bg-2:    #101512;
      --bg-3:    #141A17;
      --green:   #1A4B3A;
      --blue:    #1458C8;
      --orange:  #C84820;
      --cream:   #EDE8DF;
      --muted:   rgba(237, 232, 223, 0.46);
      --line:    rgba(237, 232, 223, 0.1);
    }

    /* ════════════════════════════════════════
       BASE
    ════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: "Barlow", sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Grain overlay — fiel à identidade */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.045;
      pointer-events: none;
      z-index: 9000;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    .wrap {
      width: min(1180px, calc(100% - 4rem));
      margin: 0 auto;
    }

    .sec { padding: 8rem 0; }
    .sec-sm { padding: 5rem 0; }

    /* ════════════════════════════════════════
       TYPOGRAPHY
    ════════════════════════════════════════ */
    .label {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 1.2rem;
    }

    h1 {
      font-family: "Cormorant Garamond", serif;
      font-weight: 300;
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
    }

    h1 em { font-style: italic; color: rgba(237, 232, 223, 0.6); }

    h2 {
      font-family: "Cormorant Garamond", serif;
      font-weight: 300;
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1.1;
    }

    h3 {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: clamp(0.92rem, 1.5vw, 1.1rem);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--cream);
    }

    p { color: var(--muted); font-weight: 300; font-size: 1rem; }

    /* ════════════════════════════════════════
       BUTTONS
    ════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 0.95rem 2rem;
      cursor: pointer;
      transition: 0.22s ease;
      border: none;
    }

    .btn-cream {
      background: var(--cream);
      color: #0B100E;
    }

    .btn-cream:hover { background: #fff; }

    .btn-outline {
      border: 1px solid rgba(237, 232, 223, 0.28);
      color: var(--cream);
      background: transparent;
    }

    .btn-outline:hover {
      border-color: rgba(237, 232, 223, 0.7);
      background: rgba(237, 232, 223, 0.04);
    }

    .btn svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* ════════════════════════════════════════
       NAV
    ════════════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      backdrop-filter: blur(18px);
      background: rgba(11, 16, 14, 0.8);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.4rem;
    }

    .nav-logo img {
      height: 46px;
      width: auto;
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(237, 232, 223, 0.22);
      background: rgba(237, 232, 223, 0.04);
      color: var(--cream);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .nav-toggle svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .nav-menu {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.1rem;
      min-width: 0;
    }

    .nav-menu a {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.46);
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .nav-menu a:hover {
      color: rgba(237, 232, 223, 0.88);
    }

    .nav-right {
      text-align: right;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .nav-right strong {
      display: block;
      color: rgba(237, 232, 223, 0.85);
      font-weight: 500;
      font-size: 0.85rem;
    }

    /* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("img/fundo.png");
      background-size: cover;
      background-position: center 25%;
      will-change: transform;
      transition: transform 0s linear;
    }

    /* Overlay: dark vignette em cima da gravura */
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(11,16,14,0.92) 0%, rgba(11,16,14,0.72) 55%, rgba(11,16,14,0.9) 100%),
        linear-gradient(to bottom, rgba(11,16,14,0.5) 0%, transparent 40%, rgba(11,16,14,0.8) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 7rem 0;
    }

    .hero-content h1 { margin-bottom: 1.6rem; }

    .hero-desc {
      max-width: 60ch;
      margin-bottom: 2.8rem;
      font-size: 1.05rem;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      padding-top: 2.5rem;
      border-top: 1px solid var(--line);
    }

    .stat-val {
      font-family: "Cormorant Garamond", serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-lbl {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2.2rem;
      right: 2.5rem;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      color: var(--muted);
    }

    .hero-scroll span {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }

    .scroll-bar {
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, rgba(237,232,223,0.35), transparent);
      animation: scrollAnim 2s ease-in-out infinite;
    }

    @keyframes scrollAnim {
      0%, 100% { transform: scaleY(0.2); opacity: 0.4; }
      50%       { transform: scaleY(1);   opacity: 1; }
    }

    /* ════════════════════════════════════════
       MARQUEE STRIP — frase da marca
    ════════════════════════════════════════ */
    .strip {
      background: var(--green);
      padding: 1.2rem 0;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .strip-track {
      display: flex;
      width: max-content;
      animation: marquee 24s linear infinite;
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      padding-right: 2.5rem;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.7);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .strip-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(237, 232, 223, 0.35);
      flex-shrink: 0;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
    }

    /* ════════════════════════════════════════
       SOBRE
    ════════════════════════════════════════ */
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 5.5rem;
      align-items: center;
    }

    .about-photo {
      position: relative;
    }

    .about-photo img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: top;
      display: block;
      filter: grayscale(15%) contrast(1.06) brightness(0.92);
    }

    .about-text h2 { margin-bottom: 1.5rem; }

    .about-text p + p { margin-top: 1rem; }

    .about-text .btn { margin-top: 2.2rem; }

    /* ════════════════════════════════════════
       DIFERENCIAIS — tabela editorial
    ════════════════════════════════════════ */
    .sec-alt { background: var(--bg-2); }

    .diff-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 4rem;
    }

    .diff-table {
      border-top: 1px solid var(--line);
    }

    .diff-row {
      display: grid;
      grid-template-columns: 4.5rem 1fr 2.2fr;
      gap: 2rem;
      align-items: baseline;
      padding: 1.55rem 0;
      border-bottom: 1px solid var(--line);
      transition: background 0.22s ease, padding 0.22s ease;
    }

    .diff-row:hover {
      background: rgba(237, 232, 223, 0.05);
      padding-left: 1rem;
      padding-right: 1rem;
      margin: 0 -1rem;
    }

    .diff-n {
      font-family: "Cormorant Garamond", serif;
      font-weight: 300;
      font-size: 1.8rem;
      color: rgba(237, 232, 223, 0.42);
      line-height: 1;
    }

    .diff-ttl {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.96);
    }

    .diff-dsc {
      font-size: 0.93rem;
      color: rgba(237, 232, 223, 0.78);
    }

    /* ════════════════════════════════════════
       TRATAMENTOS — carrossel dark
    ════════════════════════════════════════ */
    .car-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .car-nav { display: flex; gap: 2px; }

    .car-btn {
      width: 50px;
      height: 50px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--cream);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .car-btn:hover {
      background: rgba(237, 232, 223, 0.06);
      border-color: rgba(237, 232, 223, 0.28);
    }

    .car-btn svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .carousel {
      display: flex;
      gap: 1px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      cursor: grab;
      background: var(--line);
    }

    .carousel:active { cursor: grabbing; }
    .carousel::-webkit-scrollbar { display: none; }

    .c-card {
      flex: 0 0 clamp(240px, 26vw, 300px);
      scroll-snap-align: start;
      background: var(--bg-3);
      padding: 1.8rem 1.6rem;
      transition: background 0.22s ease;
    }

    .c-card:hover { background: #1a2320; }

    .c-ico {
      width: 34px;
      height: 34px;
      margin-bottom: 1.2rem;
      opacity: 0.5;
    }

    .c-ico svg {
      width: 100%;
      height: 100%;
      stroke: var(--cream);
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .c-card h3 { margin-bottom: 0.6rem; }
    .c-card p  { font-size: 0.9rem; }

    /* ════════════════════════════════════════
       CONSULTÓRIO
    ════════════════════════════════════════ */
    .office-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin-top: 4rem;
    }

    .office-block {
      background: var(--bg);
      padding: 2.5rem 2.2rem;
    }

    .office-block h3 { margin-bottom: 1rem; }

    .office-address {
      border: 1px solid var(--line);
      background: rgba(237, 232, 223, 0.04);
      padding: 1rem 1rem 0.95rem;
      margin-bottom: 1.15rem;
    }

    .office-address strong {
      display: block;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.6);
      margin-bottom: 0.4rem;
      font-weight: 500;
    }

    .office-address p {
      color: rgba(237, 232, 223, 0.88);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .office-map-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.65rem;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.76rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(187, 226, 255, 0.95);
      border: 1px solid rgba(100, 180, 230, 0.55);
      background: rgba(20, 88, 200, 0.1);
      padding: 0.48rem 0.68rem;
      transition: 0.2s ease;
    }

    .office-map-link:hover {
      color: #ffffff;
      border-color: #aaddff;
      background: rgba(20, 88, 200, 0.22);
      transform: translateY(-1px);
    }

    .office-map-link svg {
      width: 13px;
      height: 13px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .office-list {
      list-style: none;
      display: grid;
      gap: 0.75rem;
    }

    .office-list li {
      color: rgba(237, 232, 223, 0.66);
      font-size: 0.95rem;
      line-height: 1.55;
      padding-left: 1rem;
      position: relative;
    }

    .office-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.65rem;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(237, 232, 223, 0.42);
    }

    /* ════════════════════════════════════════
       DEPOIMENTOS
    ════════════════════════════════════════ */
    .testimonials-section {
      background:
        linear-gradient(180deg, rgba(237, 232, 223, 0.025), transparent 28%),
        var(--bg);
    }

    .testimonials-intro {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
      gap: 3rem;
      align-items: end;
      margin-bottom: 3rem;
    }

    .testimonials-copy {
      max-width: 66ch;
      font-size: 0.98rem;
    }

    .doctoralia-access {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      margin-bottom: 3rem;
    }

    .doctoralia-panel {
      background: linear-gradient(145deg, rgba(26, 75, 58, 0.72), rgba(20, 26, 23, 0.96));
      padding: 2rem;
      display: grid;
      gap: 1.4rem;
      position: relative;
      overflow: hidden;
    }

    .doctoralia-panel::after {
      content: "";
      position: absolute;
      inset: auto -10% -48% 28%;
      height: 230px;
      background: radial-gradient(circle, rgba(237, 232, 223, 0.14), transparent 68%);
      pointer-events: none;
    }

    .doctoralia-source,
    .doctoralia-badges span,
    .doctoralia-url,
    .doctoralia-secondary,
    .reviews-eyebrow {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      text-transform: uppercase;
    }

    .doctoralia-source {
      color: rgba(237, 232, 223, 0.62);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      position: relative;
      z-index: 1;
    }

    .doctoralia-score-row {
      display: flex;
      align-items: flex-end;
      gap: 1.1rem;
      position: relative;
      z-index: 1;
    }

    .doctoralia-score-row strong {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(4.2rem, 7vw, 6.2rem);
      font-weight: 300;
      line-height: 0.78;
      color: var(--cream);
    }

    .doctoralia-stars {
      display: block;
      color: #F4C95D;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      line-height: 1;
      margin-bottom: 0.45rem;
    }

    .doctoralia-score-row p {
      color: rgba(237, 232, 223, 0.72);
      font-size: 0.98rem;
      line-height: 1.45;
    }

    .doctoralia-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      position: relative;
      z-index: 1;
    }

    .doctoralia-badges span {
      border: 1px solid rgba(237, 232, 223, 0.16);
      background: rgba(237, 232, 223, 0.07);
      color: rgba(237, 232, 223, 0.82);
      font-size: 0.68rem;
      letter-spacing: 0.13em;
      padding: 0.42rem 0.58rem;
    }

    .doctoralia-actions {
      background: var(--bg-2);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }

    .doctoralia-actions .btn {
      justify-content: center;
      width: 100%;
    }

    .doctoralia-url {
      border: 1px solid var(--line);
      background: rgba(237, 232, 223, 0.04);
      color: rgba(237, 232, 223, 0.68);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      line-height: 1.35;
      overflow-wrap: anywhere;
      padding: 0.85rem 0.95rem;
      text-align: center;
    }

    .doctoralia-secondary {
      color: rgba(187, 226, 255, 0.94);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-align: center;
      transition: color 0.2s ease;
    }

    .doctoralia-secondary:hover { color: #fff; }

    .reviews-carousel-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.2rem;
    }

    .reviews-eyebrow {
      display: block;
      color: rgba(237, 232, 223, 0.72);
      font-size: 0.82rem;
      letter-spacing: 0.15em;
      margin-bottom: 0.3rem;
    }

    .reviews-carousel-head p {
      font-size: 0.94rem;
      color: rgba(237, 232, 223, 0.52);
    }

    .reviews-nav {
      display: flex;
      gap: 2px;
      flex-shrink: 0;
    }

    .review-nav-btn {
      width: 50px;
      height: 50px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--cream);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .review-nav-btn:hover {
      background: rgba(237, 232, 223, 0.06);
      border-color: rgba(237, 232, 223, 0.28);
    }

    .review-nav-btn svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .reviews-carousel {
      display: flex;
      gap: 1px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      background: var(--line);
      border: 1px solid var(--line);
      cursor: grab;
      touch-action: pan-y;
    }

    .reviews-carousel:active { cursor: grabbing; }
    .reviews-carousel::-webkit-scrollbar { display: none; }

    .reviews-carousel.is-dragging,
    .reviews-carousel.is-dragging * {
      user-select: none;
    }

    .review-slide {
      flex: 0 0 clamp(320px, 38vw, 470px);
      min-height: 330px;
      scroll-snap-align: start;
      background: var(--bg-2);
      padding: 1.65rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .review-slide:nth-child(even) {
      background: var(--bg-3);
    }

    .review-slide:hover {
      background: #1A2320;
      transform: translateY(-2px);
    }

    .review-slide::before {
      content: "\201C";
      position: absolute;
      right: 1.1rem;
      top: -0.35rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 7rem;
      line-height: 1;
      color: rgba(237, 232, 223, 0.055);
      pointer-events: none;
    }

    .review-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
    }

    .review-topline span {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.45);
      white-space: nowrap;
    }

    .review-topline span:first-child {
      color: rgba(237, 232, 223, 0.86);
      border: 1px solid rgba(237, 232, 223, 0.17);
      background: rgba(237, 232, 223, 0.05);
      padding: 0.32rem 0.52rem;
    }

    .review-slide blockquote {
      color: rgba(237, 232, 223, 0.82);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(1.08rem, 1.45vw, 1.28rem);
      font-weight: 300;
      line-height: 1.45;
      margin: 1.15rem 0 1.45rem;
      position: relative;
      z-index: 1;
    }

    .review-author {
      margin-top: auto;
      padding-top: 0.9rem;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 0.65rem;
      position: relative;
      z-index: 1;
    }

    .review-avatar {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(237, 232, 223, 0.16);
      background: transparent;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-family: "Cormorant Garamond", serif;
      font-size: 1rem;
      color: rgba(237, 232, 223, 0.78);
    }

    .review-author div {
      min-width: 0;
      display: flex;
      align-items: baseline;
      gap: 0.65rem;
      flex-wrap: wrap;
    }

    .review-author strong {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cream);
      line-height: 1.1;
    }

    .review-author div span {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.66rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.36);
      line-height: 1.1;
    }

    .reviews-dots {
      display: flex;
      justify-content: center;
      gap: 0.45rem;
      margin-top: 1.25rem;
    }

    .reviews-dots button {
      width: 8px;
      height: 8px;
      border: none;
      border-radius: 999px;
      background: rgba(237, 232, 223, 0.24);
      cursor: pointer;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .reviews-dots button.is-active {
      width: 28px;
      background: var(--cream);
    }

    /* ════════════════════════════════════════
       FAQ
    ════════════════════════════════════════ */
    .faq-list {
      margin-top: 3.5rem;
      border-top: 1px solid var(--line);
    }

    .faq-item { border-bottom: 1px solid var(--line); }

    .faq-trig {
      width: 100%;
      background: none;
      border: none;
      padding: 1.45rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      cursor: pointer;
      color: var(--cream);
      text-align: left;
      transition: 0.18s ease;
    }

    .faq-trig:hover { color: #fff; }

    .faq-q {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.02em;
    }

    .faq-ico {
      width: 28px;
      height: 28px;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: 1rem;
      color: var(--muted);
      transition: 0.2s ease;
    }

    .faq-trig[aria-expanded="true"] .faq-ico {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-body p { padding: 0 0 1.5rem; font-size: 0.95rem; }

    /* ════════════════════════════════════════
       CTA — azul da marca, Dürer como textura
    ════════════════════════════════════════ */
    .cta-sec {
      background:
        linear-gradient(120deg, #123329 0%, #1A4B3A 55%, #15392E 100%);
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-sec::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("img/fundo.png");
      background-size: cover;
      background-position: center;
      opacity: 0.08;
      filter: grayscale(100%);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 660px;
      margin: 0 auto;
    }

    .cta-inner .label { color: rgba(255,255,255,0.4); }

    .cta-inner h2 { color: #fff; margin-bottom: 1rem; }

    .cta-inner p { color: rgba(255,255,255,0.58); margin-bottom: 2.2rem; }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    footer {
      background: #080C0A;
      padding: 4rem 0 2.5rem;
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4rem;
      align-items: start;
      margin-bottom: 3.5rem;
    }

    .footer-logo img {
      height: 54px;
      width: auto;
      opacity: 0.65;
    }

    .footer-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .f-col-lbl {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(237, 232, 223, 0.28);
      display: block;
      margin-bottom: 0.7rem;
      font-weight: 500;
    }

    .f-col-val {
      font-size: 0.9rem;
      color: rgba(237, 232, 223, 0.46);
      line-height: 1.65;
    }

    .f-col-val a { color: rgba(237, 232, 223, 0.72); }
    .f-col-val a:hover { color: rgba(237, 232, 223, 0.95); }

    .contact-socials {
      display: flex;
      gap: 0.9rem;
      margin-top: 0.85rem;
    }

    .contact-link-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3.35rem;
      height: 3.35rem;
      border: 1px solid rgba(237, 232, 223, 0.2);
      background: rgba(237, 232, 223, 0.03);
      transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
    }

    .contact-link-icon:hover {
      color: #fff;
      border-color: rgba(237, 232, 223, 0.42);
      background: rgba(237, 232, 223, 0.08);
      transform: translateY(-1px);
    }

    .contact-link-icon svg {
      width: 1.9rem;
      height: 1.9rem;
      flex-shrink: 0;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-link-icon .doctoralia-glyph {
      width: 2.55rem;
      height: 2.4rem;
      fill: #fff;
      stroke: none;
    }

    .contact-link-icon .doctoralia-glyph path {
      fill: #fff;
      stroke: none;
    }

    .footer-bottom {
      padding-top: 1.5rem;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(237, 232, 223, 0.2);
    }

    .footer-dev {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.78rem;
      color: rgba(237, 232, 223, 0.28);
    }

    .footer-dev img {
      height: 16px;
      width: auto;
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .footer-dev:hover img {
      opacity: 1;
    }

    .wa-float {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      z-index: 500;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      animation: waPulse 2.2s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
      animation-play-state: paused;
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    @keyframes waPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.34);
      }
      50% {
        transform: scale(1.04);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
      }
    }

    /* ════════════════════════════════════════
       REVEAL ANIMATION
    ════════════════════════════════════════ */
    .rv {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .rv.in { opacity: 1; transform: translateY(0); }

    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
    @media (max-width: 1050px) {
      .about-grid   { grid-template-columns: 1fr; gap: 3.5rem; }
      .about-photo  { max-width: 380px; }
      .diff-header  { grid-template-columns: 1fr; }
      .diff-row     { grid-template-columns: 3.5rem 1fr; }
      .diff-dsc     { display: none; }
      .office-duo   { grid-template-columns: 1fr; }
      .testimonials-intro { grid-template-columns: 1fr; align-items: start; }
      .doctoralia-access { grid-template-columns: 1fr; }
      .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
      .footer-cols  { grid-template-columns: 1fr 1fr; }
      .nav-menu { gap: 0.8rem; }
      .nav-menu a { font-size: 0.72rem; letter-spacing: 0.1em; }
    }

    @media (max-width: 900px) {
      .nav-inner {
        height: 78px;
        position: relative;
      }

      .nav-toggle {
        display: inline-flex;
        order: 2;
      }

      .nav-right {
        display: none;
      }

      .nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 210;
        background: rgba(9, 13, 11, 0.96);
        border: 1px solid var(--line);
        border-top: none;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
      }

      .nav.nav-open .nav-menu {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        padding: 0.4rem 0;
      }

      .nav-menu a {
        width: 100%;
        padding: 0.85rem 1.1rem;
        border-bottom: 1px solid rgba(237, 232, 223, 0.08);
        font-size: 0.78rem;
        letter-spacing: 0.13em;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 5.2rem 0 4.2rem;
      }

      .hero-content .label {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
      }

      .hero-btns .btn {
        min-width: 210px;
      }
    }

    @media (max-width: 680px) {
      .wrap { width: calc(100% - 2.4rem); }
      .sec  { padding: 5rem 0; }
      .sec-sm { padding: 3.5rem 0; }
      .nav-inner  { height: 74px; }
      .nav-logo img { height: 40px; }
      .hero-stats { flex-direction: column; gap: 1.5rem; }
      .hero-scroll { display: none; }
      .hero-btns { width: 100%; }
      .hero-btns .btn { width: 100%; justify-content: center; }
      .diff-row   { grid-template-columns: 3rem 1fr; gap: 1rem; }
      .c-card     { flex: 0 0 80vw; }
      .doctoralia-panel,
      .doctoralia-actions,
      .review-slide { padding: 1.35rem; }
      .doctoralia-score-row { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
      .reviews-carousel-head { align-items: flex-start; flex-direction: column; }
      .review-slide { flex-basis: calc(100vw - 2.4rem); min-height: 350px; }
      .review-topline { align-items: flex-start; flex-direction: column; }
      .footer-cols { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
