    /* ─────────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────────── */
    /* Tokens centralizados em style.css */

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      color: var(--color-text-primary);
      background: var(--color-bg-page);
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .icon-sm {
      font-size: 0.95em;
    }

    .btn .icon {
      margin-right: 0.45rem;
      font-size: 0.95em;
    }

    /* ─────────────────────────────────────────
       LAYOUT HELPERS
    ───────────────────────────────────────── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section {
      padding: 5rem 0;
    }

    .section-alt {
      background: var(--color-bg);
    }

    .section-dark {
      background: var(--vc-teal-800);
    }

    /* ─────────────────────────────────────────
       TYPOGRAPHY
    ───────────────────────────────────────── */
    .overline {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--vc-teal-500);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .overline::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--vc-teal-400);
      border-radius: 99px;
      flex-shrink: 0;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: var(--color-text-primary);
      margin-bottom: 14px;
    }

    .section-title span {
      color: var(--vc-teal-500);
    }

    .section-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--color-text-secondary);
      line-height: 1.7;
      max-width: 560px;
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-sub {
      margin: 0 auto;
    }

    .section-header.center .overline {
      justify-content: center;
    }

    .section-header.center .overline::before {
      display: none;
    }

    /* ─────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────── */
    .btn {
      font-family: var(--font);
      font-weight: 500;
      font-size: 14px;
      padding: 11px 22px;
      border-radius: var(--r-md);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      transition: background 0.15s, opacity 0.15s, transform 0.1s, box-shadow 0.15s;
      line-height: 1;
    }

    .btn:active {
      transform: scale(0.98);
    }

    .btn-primary {
      background: var(--vc-teal-500);
      color: white;
    }

    .btn-primary:hover {
      background: var(--vc-teal-600);
      box-shadow: 0 4px 12px rgba(26, 150, 136, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--vc-teal-500);
      border: 1.5px solid var(--vc-teal-500);
    }

    .btn-secondary:hover {
      background: var(--vc-teal-50);
    }

    .btn-ghost-white {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .btn-white {
      background: white;
      color: var(--vc-teal-600);
      font-weight: 600;
    }

    .btn-white:hover {
      background: var(--vc-teal-50);
    }

    .btn-accent {
      background: var(--vc-accent);
      color: white;
    }

    .btn-accent:hover {
      opacity: 0.88;
    }

    .btn-lg {
      font-size: 15px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--r-lg);
    }

    .btn-sm {
      font-size: 12px;
      padding: 7px 14px;
      border-radius: var(--r-sm);
    }

    /* ─────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 0.5px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      height: 64px;
      gap: 2rem;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }

    .nav-logo-img {
      height: 36px;
      width: auto;
      display: block;
    }

    .check-circle {
      width: 32px;
      height: 32px;
      background: var(--vc-teal-500);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

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

    .nav-links a {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-secondary);
      padding: 6px 12px;
      border-radius: var(--r-sm);
      transition: color 0.15s, background 0.15s;
    }

    .nav-links a:hover {
      color: var(--vc-teal-600);
      background: var(--vc-teal-50);
    }

    .nav-links a.active {
      color: var(--vc-teal-500);
      font-weight: 600;
    }

    .nav-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-phone {
      font-size: 12px;
      font-weight: 500;
      color: var(--color-text-secondary);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-phone strong {
      color: var(--vc-warm-900);
      font-weight: 600;
      font-size: 13px;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border-radius: var(--r-sm);
      border: none;
      background: transparent;
    }

    .nav-hamburger span {
      width: 22px;
      height: 2px;
      background: var(--vc-warm-800);
      border-radius: 99px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 12px 1.5rem 16px;
      border-top: 0.5px solid var(--color-border);
      background: white;
    }

    .mobile-menu a {
      font-size: 15px;
      font-weight: 400;
      color: var(--color-text-secondary);
      padding: 10px 12px;
      border-radius: var(--r-md);
      transition: background 0.15s, color 0.15s;
    }

    .mobile-menu a:hover {
      background: var(--vc-teal-50);
      color: var(--vc-teal-600);
    }

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

    /* ─────────────────────────────────────────
       HERO CAROUSEL
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      user-select: none;
    }

    /* Track que desliza */
    .hero-track {
      display: flex;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* Cada slide */
    .hero-slide {
      flex: 0 0 100%;
      width: 100%;
      padding: 5rem 0 4.5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      right: -100px;
      top: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      right: 100px;
      bottom: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    /* backgrounds por slide */
    .hero-slide-1 {
      background: linear-gradient(135deg, var(--vc-teal-700) 0%, var(--vc-teal-500) 60%, var(--vc-teal-400) 100%);
    }

    .hero-slide-2 {
      background: linear-gradient(135deg, var(--vc-teal-800) 0%, var(--vc-teal-600) 55%, var(--vc-teal-400) 100%);
    }

    .hero-slide-3 {
      background: linear-gradient(135deg, var(--vc-teal-900) 0%, var(--vc-teal-700) 52%, var(--vc-sage-500) 100%);
    }

    .hero-slide-4 {
      background: linear-gradient(135deg, var(--vc-warm-900) 0%, var(--vc-teal-700) 55%, var(--vc-sage-300) 100%);
    }

    /* Layout interno do slide */
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
      position: relative;
      z-index: 1;
    }

    .hero-slide-image-only .hero-grid {
      grid-template-columns: 1fr;
      min-height: 430px;
    }

    .hero-slide-image-only::before,
    .hero-slide-image-only::after {
      display: none;
    }

    .hero-slide-image-only .hero-content,
    .hero-slide-image-only .hero-cards {
      display: none;
    }

    .hero-slide-no-features .hero-grid {
      grid-template-columns: 1fr;
    }

    .hero-slide-no-features .hero-content {
      max-width: 760px;
    }

    .hero-slide-no-features .hero-cards {
      display: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: white;
      font-size: 11px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 99px;
      margin-bottom: 22px;
      letter-spacing: 0.05em;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      flex-shrink: 0;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.85);
      }
    }

    .hero-h1 {
      font-size: clamp(32px, 4.5vw, 50px);
      font-weight: 800;
      color: white;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 18px;
    }

    .hero-h1 em {
      font-style: normal;
      color: rgba(255, 255, 255, 0.72);
    }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 420px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Cards visuais lado direito */
    .hero-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.38);
      border-radius: var(--r-lg);
      padding: 16px 20px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .hero-card:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.28);
      border-color: rgba(255, 255, 255, 0.55);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    }

    .hero-card-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.26);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      color: #111;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    }

    .hero-card-text strong {
      font-size: 14px;
      font-weight: 600;
      color: white;
      display: block;
      margin-bottom: 2px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-card-text span {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }

    /* ── Controles do carousel ── */
    .hero-controls {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-arrow {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.12);
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, border-color 0.15s;
      backdrop-filter: blur(4px);
      line-height: 1;
    }

    .hero-arrow:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .hero-arrow-prev {
      position: absolute;
      left: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
    }

    .hero-arrow-next {
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
    }

    .hero-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .hero-dot-btn {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      border: none;
      background: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      padding: 0;
      transition: background 0.25s, width 0.25s;
    }

    .hero-dot-btn.active {
      background: white;
      width: 24px;
    }

    /* Barra de progresso autoplay */
    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.35);
      width: 100%;
      z-index: 10;
    }

    .hero-progress-bar {
      height: 100%;
      background: white;
      width: 0%;
      transition: width linear;
    }

    /* ─────────────────────────────────────────
       STATS BAR
    ───────────────────────────────────────── */
    .stats-bar {
      background: var(--color-bg);
      border-bottom: 0.5px solid var(--color-border);
      padding: 0;
      box-shadow: var(--shadow-sm);
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: min(920px, 100%);
      max-width: 920px;
      margin: 0 auto;
    }

    .stat-item {
      padding: 1.75rem 1.5rem;
      text-align: center;
      border-right: 0.5px solid var(--color-border);
      transition: background 0.15s;
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-item:hover {
      background: var(--vc-teal-50);
    }

    .stat-num {
      font-size: 38px;
      font-weight: 800;
      color: var(--vc-teal-500);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 12.5px;
      font-weight: 400;
      color: var(--color-text-secondary);
      line-height: 1.4;
    }

    /* ─────────────────────────────────────────
       SERVICES SECTION
    ───────────────────────────────────────── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .service-card {
      background: var(--color-bg);
      border: 0.5px solid var(--color-border);
      border-radius: var(--r-lg);
      color: inherit;
      display: block;
      padding: 1.75rem 1.5rem;
      position: relative;
      text-decoration: none;
      overflow: hidden;
      cursor: pointer;
      transition:
        box-shadow 0.38s ease,
        transform 0.38s cubic-bezier(.34, 1.56, .64, 1),
        border-color 0.38s ease,
        background 0.38s ease;
    }

    /* Liquid glass sheen sweep */
    .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 55%;
      height: 100%;
      background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.58) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-18deg);
      transition: left 0.52s ease;
      pointer-events: none;
      z-index: 0;
    }

    .service-card:hover::after {
      left: 155%;
    }

    .service-card > * {
      position: relative;
      z-index: 1;
    }

    .service-card:hover {
      background: linear-gradient(148deg, var(--vc-teal-50) 0%, #ffffff 62%);
      border-color: rgba(23, 146, 169, 0.28);
      box-shadow:
        0 0 0 1px rgba(23, 146, 169, 0.07),
        0 16px 48px rgba(23, 146, 169, 0.10),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
      transform: translateY(-4px);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--vc-teal-50);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 16px;
    }

    .service-name {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--color-text-primary);
    }

    .service-desc {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--color-text-secondary);
      line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       ABOUT / WHY VIVERCLIN
    ───────────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-main-card {
      background: var(--vc-teal-500);
      border-radius: var(--r-xl);
      padding: 2.5rem 2rem;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-main-card::before {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
    }

    .about-card-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 10px;
    }

    .about-card-headline {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .about-card-body {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .about-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .about-badge {
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: white;
      font-size: 12px;
      font-weight: 400;
      padding: 5px 14px;
      border-radius: 99px;
    }

    .about-float-card {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: white;
      border-radius: var(--r-lg);
      padding: 14px 18px;
      box-shadow: var(--shadow-lg);
      border: 0.5px solid var(--color-border);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 200px;
    }

    .about-float-icon {
      width: 40px;
      height: 40px;
      background: var(--vc-teal-50);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .about-float-text strong {
      font-size: 14px;
      font-weight: 700;
      color: var(--vc-teal-500);
      display: block;
    }

    .about-float-text span {
      font-size: 11px;
      color: var(--color-text-secondary);
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 2rem;
    }

    .about-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .about-feature-icon {
      width: 42px;
      height: 42px;
      background: var(--vc-teal-50);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      border: 0.5px solid var(--vc-teal-100);
    }

    .about-feature-text strong {
      font-size: 15px;
      font-weight: 600;
      display: block;
      margin-bottom: 3px;
    }

    .about-feature-text p {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--color-text-secondary);
      line-height: 1.55;
    }

    /* ─────────────────────────────────────────
       CONVENIOS
    ───────────────────────────────────────── */
    .convenios-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .convenio-pill {
      background: var(--color-bg);
      border: 0.5px solid var(--color-border);
      border-radius: 99px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 500;
      color: var(--vc-warm-800);
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.15s, background 0.15s;
    }

    .convenio-pill:hover {
      border-color: var(--vc-teal-300);
      background: var(--vc-teal-50);
    }

    .convenio-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--vc-teal-400);
      flex-shrink: 0;
    }

    .convenio-note {
      font-size: 13px;
      font-weight: 300;
      color: var(--color-text-secondary);
      margin-top: 1.5rem;
      padding: 14px 20px;
      background: var(--vc-teal-50);
      border-radius: var(--r-md);
      border-left: 3px solid var(--vc-teal-400);
    }

    /* ─────────────────────────────────────────
       BOOKING SECTION
    ───────────────────────────────────────── */
    .booking-section {
      background: var(--vc-teal-800);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .booking-section::before {
      content: '';
      position: absolute;
      left: -80px;
      bottom: -80px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .booking-info .overline {
      color: var(--vc-teal-300);
    }

    .booking-info .overline::before {
      background: var(--vc-teal-400);
    }

    .booking-info .section-title {
      color: white;
    }

    .booking-info .section-sub {
      color: rgba(255, 255, 255, 0.7);
    }

    .booking-details {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 2rem;
    }

    .booking-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      font-weight: 300;
    }

    .booking-detail-icon {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .booking-detail strong {
      font-weight: 600;
      color: white;
      display: block;
      margin-bottom: 1px;
    }

    .booking-form-card {
      background: white;
      border-radius: var(--r-xl);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
    }

    .form-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    .form-sub {
      font-size: 13px;
      font-weight: 300;
      color: var(--color-text-secondary);
      margin-bottom: 22px;
    }

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-field.span-2 {
      grid-column: 1 / -1;
    }

    .form-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .form-input {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 400;
      padding: 10px 14px;
      border: 1px solid var(--color-border);
      border-radius: var(--r-md);
      background: var(--color-bg);
      color: var(--color-text-primary);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      width: 100%;
    }

    .form-input:focus {
      border-color: var(--vc-teal-400);
      box-shadow: 0 0 0 3px rgba(26, 150, 136, 0.12);
    }

    .form-input::placeholder {
      color: #aaa9a4;
    }

    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A9688' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    .form-submit {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
      font-size: 15px;
      font-weight: 600;
      padding: 13px;
      border-radius: var(--r-md);
      background: var(--vc-teal-500);
      color: white;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.15s, box-shadow 0.15s;
    }

    .form-submit:hover {
      background: var(--vc-teal-600);
      box-shadow: 0 4px 14px rgba(26, 150, 136, 0.4);
    }

    .form-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
      font-size: 13px;
      font-weight: 400;
      color: var(--color-text-secondary);
    }

    .form-whatsapp a {
      color: var(--vc-teal-600);
      font-weight: 500;
    }

    .form-whatsapp a:hover {
      text-decoration: underline;
    }

    /* ─────────────────────────────────────────
       FEEDBACK FORM — tipo + retorno
    ───────────────────────────────────────── */
    .feedback-types {
      display: flex;
      gap: 8px;
    }

    .feedback-type-option {
      flex: 1;
      position: relative;
    }

    .feedback-type-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .feedback-type-option span {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 8px;
      border-radius: var(--r-md);
      border: 1.5px solid var(--color-border);
      font-size: 13px;
      font-weight: 500;
      color: var(--color-text-secondary);
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
      user-select: none;
      width: 100%;
      box-sizing: border-box;
    }

    .feedback-type-option input[type="radio"]:checked + span {
      border-color: var(--vc-teal-500);
      background: var(--vc-teal-50);
      color: var(--vc-teal-700);
      box-shadow: 0 0 0 3px rgba(26, 150, 136, 0.12);
    }

    .feedback-type-option span:hover {
      border-color: var(--vc-teal-300);
      color: var(--vc-teal-600);
    }

    textarea.form-input {
      resize: vertical;
      min-height: 96px;
      line-height: 1.5;
    }

    .retorno-group {
      display: flex;
      gap: 10px;
      margin-top: 6px;
    }

    .retorno-option {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--color-text-secondary);
      cursor: pointer;
      padding: 8px 22px;
      border-radius: var(--r-md);
      border: 1.5px solid var(--color-border);
      transition: border-color 0.15s, background 0.15s, color 0.15s;
      user-select: none;
    }

    .retorno-option.selected {
      border-color: var(--vc-teal-500);
      background: var(--vc-teal-50);
      color: var(--vc-teal-700);
    }

    .retorno-option input[type="radio"] {
      accent-color: var(--vc-teal-500);
      width: 14px;
      height: 14px;
    }

    /* ─────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────── */
    .testimonials-section {
      background: #f6fafb;
      color: var(--color-text-primary);
      overflow: hidden;
      position: relative;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 83% 13%, rgba(207, 221, 127, 0.26), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(23, 146, 169, 0.09), transparent 30%);
      pointer-events: none;
    }

    .testimonials-section .container {
      position: relative;
      z-index: 1;
    }

    .testimonials-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
      gap: 4rem;
      align-items: end;
      margin-bottom: 4.8rem;
    }

    .testimonials-overline {
      color: var(--vc-sage-500);
      font-size: 13px;
      letter-spacing: 0.28em;
    }

    .testimonials-title {
      margin-top: 1rem;
      color: var(--color-text-primary);
    }

    .testimonials-title span {
      color: var(--vc-teal-500);
    }

    .testimonials-sub {
      max-width: 560px;
      margin-top: 1.2rem;
      color: var(--color-text-secondary);
      font-size: 19px;
      line-height: 1.65;
    }

    .testimonials-score {
      display: flex;
      gap: 2rem;
      align-items: flex-end;
      justify-self: end;
      min-width: 460px;
      text-align: right;
    }

    .testimonials-score-meta {
      display: grid;
      justify-items: end;
    }

    .testimonials-score-number {
      color: var(--vc-warm-900);
      font-size: clamp(104px, 9vw, 150px);
      font-weight: 900;
      line-height: 0.78;
      letter-spacing: 0;
    }

    .testimonials-score-stars {
      margin-bottom: 0.45rem;
      justify-content: flex-end;
      font-size: 30px;
    }

    .testimonials-score-copy {
      color: var(--color-text-secondary);
      font-size: 15px;
      font-weight: 500;
      text-align: right;
    }

    .testimonials-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1rem;
      padding: 0.72rem 1.35rem;
      border: 1px solid rgba(207, 221, 127, 0.45);
      border-radius: 999px;
      background: rgba(207, 221, 127, 0.22);
      color: var(--vc-teal-800);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-decoration: none;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .testimonials-badge:hover {
      border-color: rgba(23, 146, 169, 0.32);
      background: #fff;
      box-shadow: 0 10px 28px rgba(23, 146, 169, 0.12);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .testimonials-grid-loading {
      grid-template-columns: 1fr;
    }

    .reviews-loading-card {
      min-height: 180px;
      border: 1px dashed rgba(23, 146, 169, 0.22);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--color-text-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      font-weight: 700;
    }

    .reviews-loading-card i {
      color: var(--vc-teal-500);
      font-size: 22px;
    }

    .testimonial-card {
      min-height: 300px;
      background: #ffffff;
      border: 1px solid rgba(79, 76, 76, 0.12);
      border-radius: 20px;
      padding: 2.4rem 2.6rem;
      box-shadow: 0 18px 54px rgba(12, 55, 61, 0.07);
      position: relative;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .testimonial-card:hover {
      border-color: rgba(23, 146, 169, 0.24);
      box-shadow: 0 22px 58px rgba(12, 55, 61, 0.13);
      transform: translateY(-3px);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin: 2rem 0 1.45rem;
      color: #FBBF24;
      font-size: 17px;
    }

    .testimonial-text {
      font-size: 19px;
      font-weight: 400;
      color: var(--color-text-secondary);
      line-height: 1.78;
      margin-bottom: 0;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--vc-teal-500), var(--vc-sage-500));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
      overflow: hidden;
    }

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

    .testimonial-name {
      color: var(--color-text-primary);
      font-size: 19px;
      font-weight: 800;
    }

    .testimonial-role {
      margin-top: 0.1rem;
      font-size: 13px;
      color: var(--color-text-secondary);
    }

    .testimonial-google-mark {
      margin-left: auto;
      color: rgba(79, 76, 76, 0.28);
      font-size: 14px;
      font-weight: 800;
    }

    /* ─────────────────────────────────────────
       LOCATION / CONTACT
    ───────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: var(--vc-teal-50);
      border: 0.5px solid var(--vc-teal-100);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .contact-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--vc-teal-500);
      margin-bottom: 3px;
    }

    .contact-value {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .contact-value a {
      color: var(--vc-teal-600);
    }

    .contact-value a:hover {
      text-decoration: underline;
    }

    .contact-sub-value {
      font-size: 13px;
      font-weight: 300;
      color: var(--color-text-secondary);
      margin-top: 2px;
    }

    .map-placeholder {
      background: var(--vc-teal-50);
      border: 0.5px solid var(--vc-teal-100);
      border-radius: var(--r-xl);
      overflow: hidden;
      height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
    }

    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      border: none;
      position: absolute;
      inset: 0;
    }

    /* ─────────────────────────────────────────
       CTA BANNER
    ───────────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, var(--vc-teal-500) 0%, var(--vc-teal-600) 100%);
      border-radius: var(--r-xl);
      padding: 3rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      margin: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
    }

    .cta-banner-text {
      position: relative;
      z-index: 1;
    }

    .cta-banner-eyebrow {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 8px;
    }

    .cta-banner-title {
      font-size: 26px;
      font-weight: 700;
      color: white;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .cta-banner-sub {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
    }

    .cta-banner-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer {
      background: var(--vc-teal-900);
      color: white;
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {}

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 14px;
    }

    .footer-logo-img {
      height: 44px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1) grayscale(1);
      opacity: 0.92;
    }

    .footer-logo .check-circle {
      background: var(--vc-teal-500);
    }

    .footer-tagline {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 20px;
      max-width: 240px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social-btn {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: background 0.15s;
    }

    .footer-social-btn:hover {
      background: var(--vc-teal-500);
    }

    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.15s;
    }

    .footer-links a:hover {
      color: var(--vc-teal-300);
    }

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

    .footer-copy {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
    }

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

    .footer-bottom-links a {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
      transition: color 0.15s;
    }

    .footer-bottom-links a:hover {
      color: rgba(255, 255, 255, 0.65);
    }

    /* ─────────────────────────────────────────
       FLOATING WHATSAPP
    ───────────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }

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

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    /* ─────────────────────────────────────────
       BADGE
    ───────────────────────────────────────── */
    .badge {
      font-family: var(--font);
      font-size: 11px;
      font-weight: 500;
      padding: 4px 11px;
      border-radius: 99px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .badge-teal {
      background: var(--vc-teal-100);
      color: var(--vc-teal-700);
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    .d-teal {
      background: var(--vc-teal-500);
    }

    /* ─────────────────────────────────────────
       EXAM SEARCH SECTION
    ───────────────────────────────────────── */
    .exam-search-hero {
      background: linear-gradient(160deg, var(--vc-teal-700) 0%, var(--vc-teal-500) 100%);
      border-radius: var(--r-xl);
      padding: 2.5rem 2.5rem 3.5rem;
      position: relative;
      overflow: hidden;
      margin-bottom: -2rem;
    }

    .exam-search-hero::before {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
    }

    .exam-search-hero-inner {
      position: relative;
      z-index: 1;
    }

    .exam-search-eyebrow {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 10px;
    }

    .exam-search-title {
      font-size: clamp(24px, 3.5vw, 34px);
      font-weight: 700;
      color: white;
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .exam-search-sub {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 28px;
      max-width: 480px;
    }

    .exam-search-bar {
      display: flex;
      gap: 10px;
      max-width: 640px;
    }

    .exam-search-input-wrap {
      flex: 1;
      position: relative;
    }

    .exam-search-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      pointer-events: none;
    }

    .exam-search-input {
      font-family: var(--font);
      font-size: 15px;
      font-weight: 400;
      padding: 13px 14px 13px 44px;
      border: none;
      border-radius: var(--r-md);
      background: white;
      color: var(--color-text-primary);
      outline: none;
      width: 100%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transition: box-shadow 0.15s;
    }

    .exam-search-input:focus {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.35);
    }

    .exam-search-input::placeholder {
      color: #aaa9a4;
    }

    .exam-search-btn {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      padding: 13px 22px;
      border: none;
      border-radius: var(--r-md);
      background: var(--vc-accent);
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      transition: opacity 0.15s;
      box-shadow: 0 4px 14px rgba(232, 103, 42, 0.4);
    }

    .exam-search-btn:hover {
      opacity: 0.88;
    }

    /* Filter tabs */
    .exam-filter-bar {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
      margin-top: 2rem;
      padding-top: 1.75rem;
    }

    .exam-filter-btn {
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 99px;
      border: 1.5px solid var(--color-border);
      background: var(--color-bg);
      color: var(--color-text-secondary);
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .exam-filter-btn:hover {
      border-color: var(--vc-teal-300);
      color: var(--vc-teal-600);
      background: var(--vc-teal-50);
    }

    .exam-filter-btn.active {
      background: var(--vc-teal-500);
      color: white;
      border-color: var(--vc-teal-500);
    }

    /* Results */
    .exam-results-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      flex-wrap: wrap;
      gap: 8px;
    }

    .exam-count {
      font-size: 13px;
      font-weight: 500;
      color: var(--color-text-secondary);
    }

    .exam-count strong {
      color: var(--vc-teal-500);
      font-weight: 700;
    }

    .exam-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      grid-template-rows: auto;
      /* nunca mais de uma linha */
    }

    .exam-card {
      background: var(--color-bg);
      border: 0.5px solid var(--color-border);
      border-radius: var(--r-lg);
      padding: 1.1rem 1.2rem;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      min-height: 220px;
    }

    .exam-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--vc-teal-200);
      transform: translateY(-2px);
    }

    .exam-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .exam-card-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--color-text-primary);
      line-height: 1.35;
    }

    .exam-cat-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 99px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .cat-lab {
      background: var(--vc-teal-100);
      color: var(--vc-teal-700);
    }

    .cat-imagem {
      background: var(--vc-sage-100);
      color: var(--vc-sage-500);
    }

    .cat-cardio {
      background: #FEE2E2;
      color: #DC2626;
    }

    .cat-outros {
      background: var(--vc-warm-200);
      color: var(--vc-warm-800);
    }

    .cat-coluna {
      background: var(--vc-accent-light);
      color: var(--vc-accent);
    }

    .exam-card-prep {
      font-size: 12.5px;
      font-weight: 300;
      color: var(--color-text-secondary);
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 7px;
      margin-bottom: 12px;
      min-height: 6em;
    }

    .exam-card-prep-icon {
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .exam-card-prep-text {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .exam-card-prep-label {
      font-weight: 500;
      color: var(--color-text-primary);
    }

    .exam-card-footer {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      margin-top: auto;
    }

    .exam-card-cta {
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: var(--r-sm);
      background: var(--vc-teal-50);
      color: var(--vc-teal-600);
      border: 1px solid var(--vc-teal-200);
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
      white-space: nowrap;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .exam-card-cta:hover {
      background: var(--vc-teal-100);
      border-color: var(--vc-teal-300);
    }

    /* Empty state */
    .exam-empty {
      text-align: center;
      padding: 3rem 1.5rem;
      grid-column: 1 / -1;
    }

    .exam-empty-icon {
      font-size: 48px;
      margin-bottom: 14px;
    }

    .exam-empty-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .exam-empty-sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--color-text-secondary);
      margin-bottom: 20px;
    }

    @media (max-width: 1024px) {
      .exam-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .exam-search-hero {
        padding: 2rem 1.5rem 3rem;
      }

      .exam-search-bar {
        flex-direction: column;
      }

      .exam-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─────────────────────────────────────────
       SCROLL REVEAL ANIMATION
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-cards {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-visual {
        display: none;
      }

      .booking-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testimonials-head {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
      }

      .testimonials-score {
        justify-self: start;
        min-width: 0;
        text-align: left;
        align-items: flex-start;
      }

      .testimonials-score-meta {
        justify-items: start;
      }

      .testimonials-score-stars {
        justify-content: flex-start;
      }

      .testimonials-score-copy {
        text-align: left;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(3, 1fr);
      }

      .stat-item:nth-child(2) {
        border-right: 0.5px solid var(--color-border);
      }

      .stat-item:nth-child(3) {
        border-right: none;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 3.5rem 0;
      }

      .nav-links {
        display: none;
      }

      .nav-phone {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .hero-slide {
        padding: 3.5rem 0 4rem;
      }

      .hero-h1 {
        font-size: 30px;
      }

      .hero-btns {
        flex-direction: column;
        align-items: flex-start;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-sub {
        font-size: 15px;
      }

      .testimonials-score {
        flex-direction: column;
        gap: 0.75rem;
        min-width: 0;
      }

      .testimonials-score-number {
        font-size: 64px;
      }

      .testimonial-card {
        min-height: auto;
        padding: 1.55rem;
      }

      .testimonial-text {
        font-size: 15px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .cta-banner {
        flex-direction: column;
        align-items: flex-start;
      }

      .stats-inner {
        grid-template-columns: 1fr;
      }

      .booking-form-card {
        padding: 1.5rem;
      }
    }
