  :root {
    --blue-deep: #0a1628;
    --blue-mid: #0f2a5c;
    --blue-brand: #1a4fa0;
    --blue-vivid: #2563eb;
    --blue-light: #3b82f6;
    --blue-pale: #dbeafe;
    --white: #ffffff;
    --off-white: #f8faff;
    --gray-100: #f1f5fd;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --accent-gold: #f59e0b;
    --accent-cyan: #06b6d4;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--blue-deep); }
  ::-webkit-scrollbar-thumb { background: var(--blue-vivid); border-radius: 3px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo span { color: var(--blue-light); }
  .logo-badge {
    background: var(--blue-vivid);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue-light); }
  .nav-cta {
    background: var(--blue-vivid);
    color: white !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: 0;
    background: transparent;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 1px solid rgba(59,130,246,0.15);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-menu a.mobile-cta {
    background: var(--blue-vivid);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 8px;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 72px 5% 0;
  }
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-orb-1 {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
    top: -100px; right: -150px;
    animation: float1 8s ease-in-out infinite;
  }
  .hero-orb-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    bottom: -80px; left: 5%;
    animation: float2 10s ease-in-out infinite;
  }
  @keyframes float1 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
  @keyframes float2 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(20px) scale(0.97)} }

  .hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.8s forwards;
  }
  .btn-primary {
    background: var(--blue-vivid);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  }
  .btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
  }
  .btn-secondary {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  .btn-secondary:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    transform: translateY(-2px);
  }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 1s forwards;
  }
  .hero-stat { text-align: left; }
  .hero-stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
  }
  .hero-stat-num span { color: var(--blue-light); }
  .hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
  }
  .hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); align-self: center; }

  /* Hero product cards */
  .hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
  }
  @keyframes fadeIn { to { opacity: 1; } }
  .product-grid-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-card-hero {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .product-card-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .product-card-hero:hover {
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .product-card-hero:hover::before { opacity: 1; }
  .product-card-hero.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.08));
    border-color: rgba(59,130,246,0.25);
  }
  .pch-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
  }
  .pch-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 4px;
  }
  .pch-desc {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }
  .pch-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--blue-vivid);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 5%; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue-brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--blue-deep);
    margin-bottom: 16px;
  }
  .section-title em {
    font-style: normal;
    color: var(--blue-vivid);
  }
  .section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
  }

  .section-header {
    max-width: 720px;
    margin-bottom: 48px;
  }

  .programa-revenda-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(480px, 580px);
    gap: 48px;
    align-items: stretch;
    justify-content: space-between;
  }

  .programa-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .programa-feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 26, 77, 0.08);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .programa-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 26, 77, 0.12);
    border-color: rgba(0, 51, 153, 0.2);
  }

  .card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue-pale);
    color: var(--blue-vivid);
    flex-shrink: 0;
  }

  .card-icon .icon {
    width: 24px;
    height: 24px;
  }

  .programa-feature-body {
    min-width: 0;
  }

  .programa-feature-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--blue-deep);
    line-height: 1.3;
  }

  .programa-feature-body p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .programa-video-card {
    width: 100%;
    max-width: 580px;
    justify-self: end;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .programa-video-card .video-frame {
    aspect-ratio: 16 / 9;
    flex-grow: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }

  .video-frame-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: #000;
  }

  .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .video-frame-link:hover .video-play-button {
    background: rgba(200, 12, 12, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .programa-video-card .video-frame {
    aspect-ratio: 16 / 9;
    flex-grow: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }

  .programa-video-card .video-body {
    flex-grow: 1;
    padding: 28px 26px 32px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .programa-video-card .video-tag {
    margin-bottom: 14px;
    opacity: 0.8;
  }

  .programa-video-card .video-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 800;
  }

  .programa-video-card .video-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    opacity: 0.85;
  }

  @media (max-width: 980px) {
    .programa-revenda-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ─── BENEFITS ─── */
  #beneficios { background: var(--off-white); }
  .benefits-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .benefit-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }
  .benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-vivid), var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
  }
  .benefit-card:hover::after { transform: scaleX(1); }
  .benefit-icon {
    width: 52px; height: 52px;
    background: var(--blue-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: background 0.3s;
  }
  .benefit-card:hover .benefit-icon { background: var(--blue-vivid); }
  .benefit-card:hover .benefit-icon svg { filter: brightness(100); }
  .benefit-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-deep);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .benefit-text { font-size: 0.88rem; line-height: 1.65; color: var(--gray-600); }

  /* ─── PRODUTOS ─── */
  #produtos { background: var(--blue-deep); position: relative; overflow: hidden; }
  #produtos::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  #produtos .section-title { color: white; }
  #produtos .section-desc { color: rgba(255,255,255,0.55); }
  #produtos .section-eyebrow { background: rgba(37,99,235,0.2); color: var(--blue-light); }
  .products-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .product-showcase-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .product-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.05));
    opacity: 0;
    transition: opacity 0.4s;
  }
  .product-showcase-card:hover {
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  }
  .product-showcase-card:hover::before { opacity: 1; }
  .ps-emoji { font-size: 3.5rem; display: block; margin-bottom: 16px; position: relative; z-index: 1; }
  .ps-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 8px;
    position: relative; z-index: 1;
  }
  .ps-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 10px;
    position: relative; z-index: 1;
  }
  .ps-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
    position: relative; z-index: 1;
  }
  .ps-tag {
    display: inline-block;
    margin-top: 16px;
    background: rgba(37,99,235,0.25);
    color: var(--blue-light);
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    position: relative; z-index: 1;
  }

  /* ─── COMPROMISSO ─── */
  #compromisso { background: white; }
  .commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .commitment-visual {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    border-radius: 28px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
  }
  .commitment-visual::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
    top: -80px; right: -80px;
  }
  .cv-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .cv-item:last-child { margin-bottom: 0; }
  .cv-check {
    width: 40px; height: 40px;
    background: rgba(37,99,235,0.3);
    border: 1px solid rgba(59,130,246,0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .cv-text {}
  .cv-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  .cv-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .commitment-items { display: flex; flex-direction: column; gap: 0; }
  .commitment-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .commitment-item:first-child { padding-top: 0; }
  .commitment-item:last-child { border-bottom: none; padding-bottom: 0; }
  .ci-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--blue-pale);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
  }
  .ci-content {}
  .ci-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
  }
  .ci-desc { font-size: 0.88rem; line-height: 1.65; color: var(--gray-600); }

  /* ─── SOBRE / CHAMPION ─── */
  #champion { background: var(--gray-100); }
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .stats-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-block {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .stat-block:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
  .stat-block.large { grid-column: 1 / -1; background: var(--blue-deep); }
  .stat-block-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--blue-deep);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-block.large .stat-block-num { color: white; }
  .stat-block-num span { color: var(--blue-vivid); }
  .stat-block.large .stat-block-num span { color: var(--accent-cyan); }
  .stat-block-label { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
  .stat-block.large .stat-block-label { color: rgba(255,255,255,0.55); }
  .stat-block-icon {
    position: absolute;
    bottom: 20px; right: 20px;
    font-size: 2rem;
    opacity: 0.15;
  }
  .about-content .section-desc { max-width: 100%; margin-bottom: 28px; }
  .feature-list { display: flex; flex-direction: column; gap: 14px; }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--gray-600);
  }
  .feature-dot {
    width: 8px; height: 8px;
    background: var(--blue-vivid);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── TREINAMENTOS / DICAS ─── */
  #treinamentos { background: white; }
  .training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
  }
  .training-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
  }
  .training-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); border-color: transparent; }
  .tc-image {
    height: 220px;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
  }
  .tc-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.7));
  }
  .tc-img-bg-1 { background: linear-gradient(135deg, #0f2a5c, #1a4fa0); }
  .tc-img-bg-2 { background: linear-gradient(135deg, #064e3b, #065f46); }
  .tc-img-bg-3 { background: linear-gradient(135deg, #1e1b4b, #312e81); }
  .tc-img-bg-4 { background: linear-gradient(135deg, #422006, #78350f); }
  .tc-body { padding: 28px 28px; }
  .tc-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue-brand);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .tc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--blue-deep);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .tc-desc { font-size: 0.86rem; line-height: 1.65; color: var(--gray-600); }

  /* ─── CTA SECTION ─── */
  #cadastre {
    background: var(--blue-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cadastre::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-eyebrow { color: var(--blue-light); background: rgba(37,99,235,0.2); }
  #cadastre .section-title { color: white; max-width: 700px; margin: 0 auto 16px; }
  .cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  .cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
  }
  .cta-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .cta-form input::placeholder { color: rgba(255,255,255,0.35); }
  .cta-form input:focus { border-color: var(--blue-light); }
  .cta-form button {
    background: var(--blue-vivid);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .cta-form button:hover { background: var(--blue-light); transform: translateY(-2px); }
  .cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
  }
  .cta-trust-item::before { content: '✓'; color: var(--accent-cyan); font-weight: 700; }

  /* ─── FOOTER ─── */
  footer {
    background: #060f1e;
    padding: 64px 5% 32px;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    display: block;
  }
  .footer-logo span { color: var(--blue-light); }
  .footer-about { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
  }
  .social-link:hover { background: var(--blue-vivid); border-color: var(--blue-vivid); color: white; }
  .footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--blue-light); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
  .footer-phone {
    font-size: 0.82rem;
    color: var(--blue-light);
    font-weight: 500;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .products-showcase { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    section { padding: 72px 5%; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .hero-visual { display: none; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }

    .benefits-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .benefits-grid { grid-template-columns: 1fr; }

    .products-showcase { grid-template-columns: 1fr 1fr; gap: 14px; }

    .commitment-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .stats-cluster { grid-template-columns: 1fr 1fr; }

    .training-grid { grid-template-columns: 1fr; }

    .cta-form { flex-direction: column; }
    .cta-form input, .cta-form button { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .products-showcase { grid-template-columns: 1fr; }
    .stats-cluster { grid-template-columns: 1fr; }
    .stat-block.large { grid-column: auto; }
  }

  /* VISUAL REFRESH 2026 */
  :root {
    --green-deep: #0f3d2e;
    --green: #1f7a4d;
    --green-soft: #e6f4ed;
    --sun: #facc15;
    --line: rgba(10, 22, 40, 0.1);
    --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.1);
    --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.32);
  }

  body { background: #f8fafc; }
  img { max-width: 100%; display: block; }
  .sprite { display: none; }
  .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  nav {
    height: 68px;
    background: rgba(6, 15, 30, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  nav.scrolled {
    background: rgba(6, 15, 30, 0.95);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  }
  .nav-logo { font-size: clamp(1.02rem, 1.4vw, 1.25rem); letter-spacing: 0; }
  .nav-logo span { color: var(--sun); }
  .logo-badge { border-radius: 6px; background: rgba(250, 204, 21, 0.16); color: var(--sun); }
  .nav-links { gap: clamp(16px, 2vw, 30px); }
  .nav-links a { letter-spacing: 0.2px; }
  .nav-cta { background: var(--sun); color: #12213a !important; border-radius: 8px; }
  .nav-cta:hover { background: #fde047 !important; color: #12213a !important; }
  .mobile-menu a.mobile-cta {
    background: var(--sun);
    color: #12213a;
    font-weight: 800;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    background: #071120;
    align-items: center;
    padding: 76px 5% 32px;
    overflow: hidden;
  }
  .hero::before,
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 13, 26, 0.94) 0%, rgba(5, 13, 26, 0.74) 44%, rgba(5, 13, 26, 0.35) 100%),
      linear-gradient(0deg, rgba(5, 13, 26, 0.86) 0%, rgba(5, 13, 26, 0.08) 48%, rgba(5, 13, 26, 0.58) 100%);
  }
  .hero::after {
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 72%);
  }
  .hero-bg-grid,
  .hero-orb-1,
  .hero-orb-2,
  .hero-visual { display: none; }
  .hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none;
  }
  .hero-slide:nth-child(1) { background-image: url('../img/Hero-1.png'); background-position: right center; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1180px;
    padding: 0;
    z-index: 1;
  }
  .hero-content { max-width: 760px; }
  .hero-eyebrow,
  .section-eyebrow,
  .tc-tag,
  .ps-tag {
    border-radius: 8px;
    letter-spacing: 0.12em;
  }
  .hero-eyebrow {
    background: rgba(250, 204, 21, 0.12);
    border-color: rgba(250, 204, 21, 0.35);
    color: var(--sun);
  }
  .hero-title {
    font-size: clamp(2.05rem, 4.1vw, 3.65rem);
    line-height: 1.03;
    letter-spacing: 0;
    max-width: 690px;
  }
  .hero-title em {
    color: var(--sun);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .hero-desc {
    max-width: 620px;
    color: rgba(255,255,255,0.76);
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  }
  .btn-primary {
    background: var(--sun);
    color: #11203a;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(250, 204, 21, 0.24);
  }
  .btn-primary:hover { background: #fde047; color: #11203a; }
  .btn-secondary {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
  }
  .hero-stats {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
  }
  .hero-stat { padding: 0 18px; }
  .hero-stat-num { font-size: clamp(1.35rem, 2.4vw, 2rem); }
  .hero-stat-num span { color: var(--sun); }
  .hero-stat-label { color: rgba(255,255,255,0.66); letter-spacing: 0.04em; }
  .hero-divider { display: none; }
  .hero-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 1.15s forwards;
  }
  .hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
  }
  .hero-proof .icon { color: var(--sun); }

  section { padding: clamp(72px, 9vw, 108px) 5%; }
  .container { max-width: 1180px; }
  .section-title {
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.13;
    letter-spacing: 0;
  }
  .section-title em { color: var(--green); }
  .section-desc { font-size: 0.98rem; color: #526174; }
  #beneficios { background: #f6f8fb; }
  .benefits-header {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    margin-bottom: 40px;
  }
  .benefits-photo {
    min-height: 330px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    background: #0a1628;
  }
  .benefits-photo img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center; }
  .photo-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(6, 15, 30, 0.76);
    color: white;
    backdrop-filter: blur(12px);
  }
  .photo-caption strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .photo-caption span { font-size: 0.82rem; color: rgba(255,255,255,0.72); }
  .benefits-grid { gap: 18px; }
  .benefit-card,
  .product-showcase-card,
  .commitment-visual,
  .stat-block,
  .training-card {
    border-radius: 8px;
  }
  .benefit-card {
    padding: 28px;
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  }
  .benefit-icon,
  .cv-check {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--blue-brand);
    font-size: 0;
  }
  .benefit-icon svg,
  .cv-check svg { width: 22px; height: 22px; }
  .benefit-card:hover .benefit-icon {
    color: white;
    background: var(--green);
  }
  .benefit-title,
  .ci-title,
  .cv-title,
  .tc-title,
  .ps-name { letter-spacing: 0; text-transform: none; }
  .benefit-title { font-size: 1.02rem; }
  .benefit-text { font-size: 0.9rem; color: #526174; }

  #produtos {
    background:
      linear-gradient(180deg, rgba(7,17,32,0.93), rgba(7,17,32,0.98)),
      url('../img/BANNER33.png') center / cover;
  }
  #produtos::before { display: none; }
  #produtos .section-title em { color: var(--sun); }
  #produtos .section-eyebrow { color: var(--sun); background: rgba(250,204,21,0.12); }
  .products-showcase { gap: 18px; margin-top: 48px; }
  .product-showcase-card {
    padding: 0;
    text-align: left;
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.11);
    backdrop-filter: blur(10px);
  }
  .product-showcase-card::before { display: none; }
  .product-showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
  .ps-media {
    height: 218px;
    position: relative;
    overflow: hidden;
    background: #0b2145;
  }
  .ps-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transition: transform 0.6s ease;
  }
  .product-showcase-card:hover .ps-media img { transform: scale(1.06); }
  .ps-body { padding: 22px; }
  .ps-category { color: var(--sun); letter-spacing: 0.12em; }
  .ps-name { font-size: 1.12rem; }
  .ps-desc { font-size: 0.86rem; color: rgba(255,255,255,0.62); }
  .ps-tag { color: #11203a; background: var(--sun); }

  .commitment-grid { gap: 52px; align-items: stretch; }
  .commitment-visual {
    min-height: 560px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
      linear-gradient(180deg, rgba(7,17,32,0.08), rgba(7,17,32,0.92)),
      url('../img/PAREDAO.png') center / cover;
    box-shadow: var(--shadow-soft);
  }
  .commitment-visual::before { display: none; }
  .cv-item {
    margin-bottom: 14px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(6, 15, 30, 0.66);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
  }
  .cv-check { background: rgba(250, 204, 21, 0.14); color: var(--sun); border-color: rgba(250,204,21,0.28); }
  .cv-desc { color: rgba(255,255,255,0.7); }
  .commitment-item { padding: 24px 0; }
  .ci-num { color: rgba(31,122,77,0.18); }
  .ci-desc { font-size: 0.9rem; color: #526174; }

  #champion { background: #eef3f6; }
  .about-layout { gap: 58px; }
  .stats-cluster { gap: 14px; align-items: stretch; }
  .about-photo-main {
    grid-column: 1 / -1;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
  }
  .about-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
  }
  .about-photo-main figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 8px;
    background: rgba(6, 15, 30, 0.78);
    color: white;
    padding: 12px 14px;
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
  }
  .stat-block {
    padding: 24px;
    border-color: var(--line);
  }
  .stat-block.large { background: var(--green-deep); }
  .stat-block-num { font-size: clamp(2rem, 4vw, 2.7rem); }
  .stat-block-num span { color: var(--green); }
  .stat-block.large .stat-block-num span { color: var(--sun); }
  .stat-block-icon { color: var(--green); opacity: 0.18; font-size: 0; }
  .stat-block-icon svg { width: 36px; height: 36px; }
  .feature-dot { background: var(--green); border-radius: 2px; }

  #treinamentos { background: white; }
  .training-grid { gap: 22px; }
  .training-card {
    background: white;
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  }
  .training-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
  .tc-image {
    height: 245px;
    font-size: 0;
    background: #102a54;
  }
  .tc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .training-card:hover .tc-image img { transform: scale(1.05); }
  .tc-image::after { background: linear-gradient(to bottom, transparent 38%, rgba(7,17,32,0.78)); }
  .tc-icon {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #11203a;
    background: var(--sun);
  }
  .tc-body { padding: 24px; }
  .tc-tag { color: var(--green); background: var(--green-soft); }
  .tc-desc { font-size: 0.9rem; color: #526174; }

  #cadastre {
    background:
      linear-gradient(90deg, rgba(7,17,32,0.95), rgba(7,17,32,0.82)),
      url('../img/BANNER33.png') center / cover;
  }
  #cadastre::before { display: none; }
  #cadastre .section-title em { color: var(--sun) !important; }
  .cta-eyebrow { color: var(--sun); background: rgba(250,204,21,0.12); }
  .cta-desc { color: rgba(255,255,255,0.72); font-size: 1rem; }
  .cta-form input { border-radius: 8px; background: rgba(255,255,255,0.1); }
  .cta-form button { border-radius: 8px; background: var(--sun); color: #11203a; }
  .cta-form button:hover { background: #fde047; color: #11203a; }
  .cta-trust-item { color: rgba(255,255,255,0.66); }
  .cta-trust-item::before { color: var(--sun); }

  footer { background: #06101f; }
  .footer-logo span,
  .footer-phone,
  .footer-col ul li a:hover { color: var(--sun); }
  .social-link:hover { background: var(--sun); border-color: var(--sun); color: #11203a; }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
  }
  .reveal-zoom { opacity: 0; transform: translateY(26px) scale(0.98); }
  .reveal-zoom.visible { opacity: 1; transform: translateY(0) scale(1); }

  @media (max-width: 1024px) {
    .hero::before {
      background:
        linear-gradient(90deg, rgba(5, 13, 26, 0.95), rgba(5, 13, 26, 0.68)),
        linear-gradient(0deg, rgba(5, 13, 26, 0.86), rgba(5, 13, 26, 0.18));
    }
    .benefits-header,
    .commitment-grid,
    .about-layout { grid-template-columns: 1fr; }
    .benefits-photo { order: -1; }
  }

  @media (max-width: 768px) {
    nav { height: 66px; }
    .nav-logo { font-size: 0.98rem; gap: 7px; }
    .logo-badge { display: none; }
    .mobile-menu { top: 66px; }
    .hero { min-height: auto; padding-top: 94px; }
    .hero-inner { padding-top: 56px; }
    .hero-title { font-size: clamp(1.9rem, 9.6vw, 2.65rem); line-height: 1.07; }
    .hero-desc { font-size: 0.96rem; line-height: 1.65; }
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-stat { padding: 0; }
    .hero-divider { display: none; }
    .photo-caption { position: static; border-radius: 0; }
    .benefits-photo img { min-height: 260px; }
    .products-showcase { grid-template-columns: 1fr; }
    .commitment-visual { min-height: 640px; }
    .stats-cluster { grid-template-columns: 1fr; }
    .about-photo-main { min-height: 500px; }
  }

  @media (max-width: 480px) {
    .hero-actions { align-items: stretch; }
    .hero-proof { width: 100%; }
    .benefit-card { padding: 24px; }
    .commitment-visual { min-height: 720px; padding: 18px; }
    .cv-item { padding: 13px; }
    .tc-image { height: 220px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
    .hero-slide:first-child { opacity: 1; }
  }

  /* REV official branding: azul #003399 e branco */
  :root {
    --rev-blue: #003399;
    --rev-blue-dark: #001f5c;
    --rev-blue-mid: #0044cc;
    --rev-blue-light: #99b3ff;
    --rev-ice: #eaf0ff;
    --blue-deep: #001a4d;
    --blue-mid: #002a80;
    --blue-brand: var(--rev-blue);
    --blue-vivid: var(--rev-blue);
    --blue-light: var(--rev-blue-light);
    --blue-pale: var(--rev-ice);
    --accent-cyan: #ffffff;
    --accent-gold: #ffffff;
    --green-deep: #001a4d;
    --green: var(--rev-blue);
    --green-soft: var(--rev-ice);
    --sun: #ffffff;
  }
  nav {
    background: rgba(5, 18, 44, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  nav.scrolled { background: rgba(5, 18, 44, 0.97); }
  .nav-logo {
    min-width: 0;
    gap: 0;
  }
  .nav-logo img {
    width: clamp(152px, 18vw, 226px);
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
  }
  .logo-badge { display: none; }
  .nav-links a:hover,
  .nav-links a[style*="var(--blue-light)"] { color: #dbeafe !important; }
  .nav-cta,
  .mobile-menu a.mobile-cta,
  .btn-primary,
  .cta-form button {
    background: #ffffff;
    color: var(--rev-blue) !important;
    box-shadow: 0 14px 36px rgba(255,255,255,0.18);
  }
  .nav-cta:hover,
  .btn-primary:hover,
  .cta-form button:hover {
    background: var(--rev-ice) !important;
    color: var(--rev-blue) !important;
  }
  .btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 18, 44, 0.58) 0%, rgba(5, 18, 44, 0.32) 45%, rgba(5, 18, 44, 0.08) 100%),
      linear-gradient(0deg, rgba(5, 18, 44, 0.42) 0%, rgba(5, 18, 44, 0.02) 52%, rgba(5, 18, 44, 0.32) 100%);
  }
  .hero-eyebrow {
    color: #ffffff;
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.28);
  }
  .hero-title em,
  #produtos .section-title em,
  #cadastre .section-title em {
    color: #dbeafe !important;
  }
  .hero-stat-num span,
  .hero-proof .icon,
  .ps-category,
  #produtos .section-eyebrow,
  .cta-eyebrow {
    color: #ffffff;
  }
  .hero-proof,
  .hero-stats {
    background: rgba(5, 18, 44, 0.36);
    border-color: rgba(255,255,255,0.18);
  }
  .section-eyebrow {
    background: var(--rev-ice);
    color: var(--rev-blue);
  }
  .section-title em,
  .stat-block-num span,
  .stat-block-icon {
    color: var(--rev-blue);
  }
  .benefit-card:hover .benefit-icon,
  .feature-dot {
    background: var(--rev-blue);
  }
  #produtos {
    background:
      linear-gradient(180deg, rgba(5,18,44,0.94), rgba(5,18,44,0.98)),
      url('../img/hero-revenda-kit.jpg') center / cover;
  }
  #produtos .section-eyebrow,
  .cta-eyebrow {
    background: rgba(255,255,255,0.12);
  }
  .ps-tag,
  .tc-icon {
    background: #ffffff;
    color: var(--rev-blue);
  }
  .ps-tag {
    box-shadow: 0 8px 20px rgba(255,255,255,0.12);
  }
  .cv-check {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.26);
  }
  .stat-block.large {
    background: linear-gradient(135deg, var(--rev-blue-dark), var(--rev-blue));
  }
  .stat-block.large .stat-block-num span {
    color: #ffffff;
  }
  .tc-tag {
    color: var(--rev-blue);
    background: var(--rev-ice);
  }
  #cadastre {
    background:
      linear-gradient(90deg, rgba(5,18,44,0.96), rgba(5,18,44,0.82)),
      url('../img/Hero-1.png') center / cover;
  }
  .cta-trust-item::before,
  .footer-logo span,
  .footer-phone,
  .footer-col ul li a:hover {
    color: #ffffff;
  }
  .footer-logo-img {
    width: min(230px, 100%);
    height: auto;
    display: block;
    margin-bottom: 16px;
  }
  .social-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--rev-blue);
  }

  @media (max-width: 768px) {
    .nav-logo img { width: 172px; max-height: 42px; }
    .hero::before {
      background:
        linear-gradient(90deg, rgba(5, 18, 44, 0.72), rgba(5, 18, 44, 0.34)),
        linear-gradient(0deg, rgba(5, 18, 44, 0.58), rgba(5, 18, 44, 0.12));
    }
  }

  /* ─── HERO LAYOUT REORG ─── */
  .hero-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: 1fr auto;
    gap: 48px 64px;
    align-items: center;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 !important;
  }
  .hero-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    max-width: 580px;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero-content > * { margin: 0 !important; }
  .hero-title {
    font-size: clamp(2.1rem, 3.6vw, 3.2rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: clamp(0.98rem, 1.18vw, 1.08rem) !important;
    line-height: 1.6 !important;
    max-width: 520px !important;
  }
  .hero-actions { gap: 14px !important; margin-top: 6px !important; }
  .btn-primary, .btn-secondary { padding: 13px 26px !important; }

  .hero-stats {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    align-self: end;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 26px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column;
    gap: 14px !important;
    grid-template-columns: none !important;
  }
  .hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }
  .hero-stat {
    flex: 0 0 auto;
    padding: 4px 28px !important;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.14);
  }
  .hero-stat:first-child { padding-left: 0 !important; }
  .hero-stat:last-child { border-right: none; padding-right: 0 !important; }
  .hero-stat-num {
    font-size: clamp(1.45rem, 2vw, 1.9rem) !important;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .hero-stat-num span {
    font-size: 0.7em;
    font-weight: 700;
  }
  .hero-stat-label {
    margin-top: 6px !important;
    font-size: 0.7rem !important;
    line-height: 1.3;
    white-space: nowrap;
  }

  .hero-stats .hero-proof-strip {
    width: 100%;
    margin: 0 !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255,255,255,0.14);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-stats .hero-proof {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 8px;
    min-height: 32px;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
  }
  .hero-stats .hero-proof .icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* Esconde a strip antiga fora do bloco de stats (será movida via JS) */
  .hero-content > .hero-proof-strip { display: none; }

  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto auto;
      gap: 28px;
      align-items: center;
      justify-items: start;
    }
    .hero-content { max-width: 720px; }
  }

  @media (max-width: 768px) {
    .hero-inner { gap: 22px; }
    .hero-content { gap: 14px; }
    .hero-stats { padding: 14px 16px !important; gap: 12px !important; }
    .hero-stats-row {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-stat {
      padding: 10px 0 !important;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat:last-child { border-bottom: none; }
    .hero-stats .hero-proof-strip {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ─── POLISH PASS 2026 ─── */
  /* Logo: tamanho consistente, sem distorção e melhor encaixe na nav */
  nav { padding-top: 8px; padding-bottom: 8px; height: 76px; }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 4px 0;
  }
  .nav-logo img {
    width: auto;
    height: clamp(38px, 4.4vw, 52px);
    max-height: 56px;
    border-radius: 6px;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.22));
    transition: transform 0.25s ease;
  }
  .nav-logo:hover img { transform: translateY(-1px) scale(1.02); }
  .footer-logo-img {
    width: clamp(180px, 22vw, 240px);
    border-radius: 6px;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
  }

  /* HERO: reduzir opacidade do overlay para valorizar a imagem */
  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 18, 44, 0.52) 0%, rgba(5, 18, 44, 0.20) 50%, rgba(5, 18, 44, 0.02) 100%),
      linear-gradient(0deg, rgba(5, 18, 44, 0.58) 0%, rgba(5, 18, 44, 0.0) 55%, rgba(5, 18, 44, 0.18) 100%) !important;
  }
  /* Texto do hero direto sobre a imagem, sem card */
  .hero-content {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    max-width: 720px;
  }
  .hero-title { text-shadow: 0 2px 22px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.35); }
  .hero-desc {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  }

  /* Hero stats: melhor separação visual com divisores verticais */
  .hero-stats {
    background: rgba(5, 18, 44, 0.48);
    border-color: rgba(255,255,255,0.22);
  }
  .hero-stat { position: relative; }
  .hero-stat + .hero-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 70%;
    background: rgba(255,255,255,0.16);
  }

  /* BENEFÍCIOS: ícones com fundo suave, hover nítido */
  .benefit-icon {
    background: var(--rev-ice);
    color: var(--rev-blue);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .benefit-icon svg { stroke: currentColor; }
  .benefit-card:hover .benefit-icon {
    background: var(--rev-blue);
    color: #ffffff;
    transform: scale(1.06);
  }
  .benefit-card::after {
    background: linear-gradient(90deg, var(--rev-blue), var(--rev-blue-mid));
  }

  /* PRODUTOS: tag com leve elevação e contorno */
  .ps-tag {
    box-shadow: 0 6px 16px rgba(255,255,255,0.08);
    border: 1px solid rgba(11,63,158,0.08);
  }

  /* COMPROMISSO: cards um pouco mais legíveis sobre a imagem */
  .commitment-visual {
    background:
      linear-gradient(180deg, rgba(5,18,44,0.18) 0%, rgba(5,18,44,0.85) 70%, rgba(5,18,44,0.94) 100%),
      url('../img/PAREDAO.png') center / cover !important;
  }
  .cv-item {
    background: rgba(5, 18, 44, 0.62);
    border-color: rgba(255,255,255,0.14);
  }
  .cv-check {
    background: #ffffff;
    color: var(--rev-blue);
    border-color: rgba(255,255,255,0.5);
  }
  .ci-num {
    color: var(--rev-blue);
    opacity: 0.18;
  }

  /* TREINAMENTOS: ícones com cor consistente e leve sombra */
  .tc-icon {
    width: 44px; height: 44px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  }
  .tc-icon svg { width: 22px; height: 22px; }

  /* Stat blocks: melhor hierarquia */
  .stat-block-icon { opacity: 0.22; }
  .stat-block.large .stat-block-icon { color: #ffffff; opacity: 0.18; }

  /* CTA: form com melhor alinhamento e foco visual */
  .cta-form input {
    border: 1px solid rgba(255,255,255,0.22);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .cta-form input:focus {
    border-color: #ffffff;
    background: rgba(255,255,255,0.16);
  }
  #cadastre {
    background:
      linear-gradient(90deg, rgba(5,18,44,0.86), rgba(5,18,44,0.62)),
      url('../img/Hero-1.png') center / cover !important;
  }

  /* Footer: pequeno ajuste na logo do rodapé */
  footer { padding-top: 56px; }
  .footer-grid { gap: 40px; }

  /* Social links com cor branca da marca */
  .social-link {
    color: rgba(255,255,255,0.7);
    transition: all 0.25s ease;
  }
  .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.12);
  }

  /* Reveal: corrigir sutil glitch em elementos com transform escala */
  .reveal-zoom { transform: translateY(20px) scale(0.985); }

  /* Botão hero secundário - melhor contraste */
  .btn-secondary {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.32);
    color: #ffffff;
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: #ffffff;
    color: #ffffff;
  }

  @media (max-width: 1024px) {
    .hero::before {
      background:
        linear-gradient(90deg, rgba(5, 18, 44, 0.62), rgba(5, 18, 44, 0.30)),
        linear-gradient(0deg, rgba(5, 18, 44, 0.62), rgba(5, 18, 44, 0.10)) !important;
    }
  }

  @media (max-width: 768px) {
    nav { height: 72px; padding-top: 6px; padding-bottom: 6px; }
    .nav-logo img { height: 44px; }
    .mobile-menu { top: 72px; }
    .hero { padding: 84px 5% 24px; }
    .hero-content { padding: 0; }
    .hero-title { margin-bottom: 16px; }
    .hero-desc { margin-bottom: 24px; }
    .hero-stats { margin-top: 24px; }
    .hero-proof-strip { margin-top: 14px; }
    .hero::before {
      background:
        linear-gradient(90deg, rgba(0, 26, 77, 0.74), rgba(0, 26, 77, 0.42)),
        linear-gradient(0deg, rgba(0, 26, 77, 0.66), rgba(0, 26, 77, 0.18)) !important;
    }
    .hero-stat + .hero-stat::before { display: none; }
  }

  /* Título sem quebra: ajusta tamanho para caber em uma linha */
  #compromisso .section-title {
    font-size: clamp(1.2rem, 2.5vw, 2.3rem) !important;
    line-height: 1.2 !important;
  }
  #champion .section-title {
    font-size: clamp(1.1rem, 2vw, 1.95rem) !important;
    line-height: 1.2 !important;
  }
  @media (max-width: 1024px) {
    #champion .section-title {
      white-space: normal !important;
      font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }
  }
  @media (max-width: 768px) {
    #compromisso .section-title {
      white-space: normal !important;
      font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
    }
  }

  /* Seção "A Champion": layout corrigido (foto + 3 stats organizados) */
  #champion .about-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: start;
  }
  #champion .stats-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .about-photo-main {
    grid-column: 1 / -1 !important;
    min-height: 360px !important;
    max-height: 380px;
    border-radius: 16px;
  }
  .about-photo-main img {
    object-fit: cover !important;
    object-position: center 38% !important;
  }
  #champion .stat-block {
    padding: 22px 20px !important;
    border-radius: 14px !important;
    min-width: 0;
    overflow: hidden;
  }
  #champion .stat-block.large {
    grid-column: 1 / -1 !important;
    padding: 26px 24px !important;
  }
  #champion .stat-block-num {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem) !important;
    line-height: 1 !important;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
  }
  #champion .stat-block-num span {
    font-size: 0.62em;
    font-weight: 700;
  }
  #champion .stat-block-label {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin-top: 8px;
  }
  #champion .stat-block-icon {
    bottom: 14px !important;
    right: 14px !important;
  }
  #champion .stat-block-icon svg { width: 28px; height: 28px; }

  @media (max-width: 1024px) {
    #champion .about-layout {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .about-photo-main { max-height: 340px; }
  }
  @media (max-width: 600px) {
    #champion .stats-cluster { grid-template-columns: 1fr; }
    #champion .stat-block.large { grid-column: auto !important; }
  }

  /* Banner de Benefícios: card acompanha a proporção natural da foto */
  .benefits-photo {
    background: transparent;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    height: auto !important;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    line-height: 0;
  }
  .benefits-photo img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    display: block;
  }
  .benefits-photo .photo-caption {
    background: rgba(0, 26, 77, 0.88);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
  }

  /* Feature list com ícones */
  .feature-item {
    align-items: center;
    gap: 12px !important;
  }
  .feature-ico {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--rev-ice);
    color: #003399;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
  .feature-ico svg {
    width: 18px;
    height: 18px;
  }
  .feature-item:hover .feature-ico {
    background: #003399;
    color: #ffffff;
    transform: scale(1.05);
  }

  /* ─── PALETA AZUL #003399 + BRANCO (final override) ─── */
  nav { background: rgba(0, 26, 77, 0.92); border-bottom-color: rgba(255,255,255,0.1); }
  nav.scrolled { background: rgba(0, 26, 77, 0.98); }
  .mobile-menu { background: rgba(0, 26, 77, 0.98); }

  .hero { background: #001a4d; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 26, 77, 0.52) 0%, rgba(0, 26, 77, 0.22) 50%, rgba(0, 26, 77, 0.04) 100%),
      linear-gradient(0deg, rgba(0, 26, 77, 0.58) 0%, rgba(0, 26, 77, 0.0) 55%, rgba(0, 26, 77, 0.18) 100%) !important;
  }
  .hero-eyebrow {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.30);
    color: #ffffff;
  }
  .hero-title em,
  #produtos .section-title em,
  #cadastre .section-title em,
  .hero-stat-num span,
  .stat-block.large .stat-block-num span {
    color: #ffffff !important;
  }
  .hero-proof,
  .hero-stats {
    background: rgba(0, 26, 77, 0.45);
    border-color: rgba(255,255,255,0.20);
  }
  .hero-proof .icon { color: #ffffff; }

  /* Botões: azul sólido com texto branco como primário forte */
  .btn-primary,
  .nav-cta,
  .mobile-menu a.mobile-cta,
  .cta-form button {
    background: #ffffff !important;
    color: #003399 !important;
    box-shadow: 0 12px 32px rgba(0, 51, 153, 0.28);
  }
  .btn-primary:hover,
  .nav-cta:hover,
  .cta-form button:hover {
    background: #eaf0ff !important;
    color: #003399 !important;
  }

  /* Section titles e eyebrows em fundo claro */
  .section-eyebrow {
    background: var(--rev-ice);
    color: #003399;
  }
  .section-title em { color: #003399; }
  .section-title { color: #001a4d; }

  /* Benefícios */
  #beneficios { background: #f4f7fc; }
  .benefit-icon { background: #eaf0ff; color: #003399; }
  .benefit-card:hover .benefit-icon { background: #003399; color: #ffffff; }
  .benefit-card::after {
    background: linear-gradient(90deg, #003399, #0044cc);
  }
  .benefit-title { color: #001a4d; }

  /* Produtos: fundo azul escuro + foto */
  #produtos {
    background:
      linear-gradient(180deg, rgba(0, 26, 77, 0.94), rgba(0, 26, 77, 0.98)),
      url('../img/hero-revenda-kit.jpg') center / cover !important;
  }
  #produtos .section-eyebrow {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
  }
  .ps-category { color: #ffffff; opacity: 0.85; }
  .ps-tag { background: #ffffff; color: #003399; border-color: rgba(0,51,153,0.1); }

  /* Compromisso: foto limpa à esquerda, cards reagrupados à direita */
  .commitment-visual {
    background:
      linear-gradient(180deg, rgba(0,26,77,0.0) 70%, rgba(0,26,77,0.25) 100%),
      url('../img/Atendente.png') center top / cover !important;
    min-height: 640px;
    border-radius: 18px;
  }
  .commitment-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 8px;
  }
  .cv-grid .cv-item {
    background: #f4f7fc;
    border: 1px solid rgba(0, 26, 77, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin: 0 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .cv-grid .cv-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 51, 153, 0.25);
    box-shadow: 0 12px 28px rgba(0, 26, 77, 0.08);
  }
  .cv-grid .cv-check {
    background: #ffffff;
    color: #003399;
    border-color: rgba(0, 51, 153, 0.15);
    box-shadow: 0 6px 14px rgba(0, 26, 77, 0.06);
  }
  .cv-grid .cv-title {
    color: #001a4d;
    font-size: 0.82rem;
  }
  .cv-grid .cv-desc {
    color: #526174;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  @media (max-width: 1024px) {
    .commitment-visual { min-height: 420px; }
  }
  @media (max-width: 600px) {
    .cv-grid { grid-template-columns: 1fr; }
    .commitment-visual { min-height: 360px; }
  }
  .cv-check { background: #ffffff; color: #003399; border-color: rgba(255,255,255,0.5); }
  .ci-num { color: #003399; opacity: 0.20; }
  .ci-title { color: #001a4d; }

  /* Champion / Sobre */
  #champion { background: #eef2f8; }
  .stat-block-num { color: #001a4d; }
  .stat-block-num span { color: #003399; }
  .stat-block.large {
    background: linear-gradient(135deg, #001f5c, #003399) !important;
  }
  .stat-block-icon { color: #003399; }
  .stat-block.large .stat-block-icon { color: #ffffff; }
  .feature-dot { background: #003399; }
  .about-photo-main figcaption { background: rgba(0, 26, 77, 0.82); }

  /* Treinamentos */
  .tc-tag { background: var(--rev-ice); color: #003399; }
  .tc-icon { background: #ffffff; color: #003399; }
  .tc-title { color: #001a4d; }
  .tc-img-bg-1 { background: linear-gradient(135deg, #001f5c, #003399); }
  .tc-img-bg-2 { background: linear-gradient(135deg, #001a4d, #0044cc); }
  .tc-img-bg-3 { background: linear-gradient(135deg, #002a80, #0044cc); }
  .tc-img-bg-4 { background: linear-gradient(135deg, #001f5c, #002a80); }

  /* CTA */
  #cadastre {
    background:
      linear-gradient(90deg, rgba(0, 26, 77, 0.90), rgba(0, 51, 153, 0.72)),
      url('../img/Hero-1.png') center / cover !important;
  }
  .cta-eyebrow { background: rgba(255,255,255,0.14); color: #ffffff; }
  .cta-trust-item::before { color: #ffffff; }

  /* Footer */
  footer { background: #001233; }
  .footer-logo span,
  .footer-phone,
  .footer-col ul li a:hover { color: #ffffff; }
  .social-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #003399;
  }

  /* Scrollbar */
  ::-webkit-scrollbar-track { background: #001a4d; }
  ::-webkit-scrollbar-thumb { background: #003399; }

  /* ─── HERO IMERSIVO + HEADER FLUTUANTE PILL ─── */
  /* Hero tela cheia, sem padding-top do nav */
  .hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
  }
  .hero-inner {
    padding: 6vh 0 12vh !important;
    height: 100% !important;
  }

  /* Logo grande dentro do hero (estado inicial) */
  .hero-logo {
    width: clamp(180px, 22vw, 280px);
    height: auto;
    margin-bottom: 20px !important;
    border-radius: 8px;
    filter: drop-shadow(0 14px 30px rgba(0, 26, 77, 0.45));
    transform-origin: top left;
    transition: opacity 0.35s ease;
  }

  /* Quando estamos no hero: nav escondido, logo grande visível */
  body:not(.past-hero) #navbar {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }
  body:not(.past-hero) #navLogo { visibility: hidden; }

  /* Quando passamos do hero: nav vira pill flutuante centralizada */
  body.past-hero #navbar {
    top: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 32px));
    height: 64px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid rgba(0, 26, 77, 0.08);
    box-shadow: 0 18px 50px rgba(0, 26, 77, 0.12), 0 4px 14px rgba(0, 26, 77, 0.08);
    opacity: 1;
    pointer-events: auto;
    transition: top 0.45s cubic-bezier(.22,.61,.36,1),
                opacity 0.45s ease,
                transform 0.45s cubic-bezier(.22,.61,.36,1),
                background 0.3s ease;
  }
  body.past-hero #navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 60px rgba(0, 26, 77, 0.18), 0 6px 18px rgba(0, 26, 77, 0.10);
  }
  body.past-hero #navbar .nav-links a {
    color: #001a4d;
  }
  body.past-hero #navbar .nav-links a:hover {
    color: #003399;
  }
  body.past-hero #navbar .nav-cta {
    background: #003399 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 51, 153, 0.3);
  }
  body.past-hero #navbar .nav-cta:hover {
    background: #001f5c !important;
  }
  body.past-hero #navbar .hamburger span {
    background: #001a4d;
  }
  body.past-hero #navLogo {
    visibility: visible;
    height: 38px;
    width: auto;
  }

  /* Indicador de scroll "desça" */
  .hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    background: transparent;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    animation: indicatorFadeIn 0.8s 1.2s forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .hero-scroll-indicator:hover {
    color: #ffffff;
    transform: translateX(-50%) translateY(-2px);
  }
  body.past-hero .hero-scroll-indicator {
    opacity: 0;
    pointer-events: none;
  }
  @keyframes indicatorFadeIn {
    to { opacity: 1; }
  }
  .hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
    display: block;
  }
  .hero-scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: currentColor;
    border-radius: 2px;
    animation: wheelBounce 1.6s ease-in-out infinite;
  }
  @keyframes wheelBounce {
    0%, 100% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.4; transform: translate(-50%, 10px); }
  }

  /* Animação FLIP da logo: do hero para o nav (suave e em sincronia com o scroll) */
  .hero-logo.flying {
    position: fixed;
    z-index: 1100;
    margin: 0 !important;
    pointer-events: none;
    transition: transform 1.6s cubic-bezier(.22,.61,.36,1),
                opacity 0.45s ease 1.25s;
    will-change: transform, opacity;
  }
  .hero-logo.landed { opacity: 0; }

  /* Mobile: pill com mais espaço */
  @media (max-width: 768px) {
    body.past-hero #navbar {
      top: 10px;
      width: calc(100% - 20px);
      height: 58px;
      padding: 0 14px;
    }
    body.past-hero #navLogo { height: 32px; }
    .hero-logo {
      width: clamp(160px, 48vw, 220px);
      margin-bottom: 16px !important;
    }
    .hero-scroll-indicator {
      bottom: 14px;
      font-size: 0.65rem;
    }
  }

/* product-showcase-card como link: tira sublinhado, herda layout */
a.product-showcase-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ─── HEADER PILL FLUTUANTE: escondido no hero, aparece ao começar a rolar ─── */
#navbar {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translate(-50%, -130%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: min(1100px, calc(100% - 32px));
  height: 64px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(0, 26, 77, 0.08);
  box-shadow: 0 18px 50px rgba(0, 26, 77, 0.12), 0 4px 14px rgba(0, 26, 77, 0.08);
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1),
              opacity 0.45s ease,
              background 0.3s ease,
              box-shadow 0.3s ease !important;
}
#navbar.scrolled {
  transform: translate(-50%, 0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(0, 26, 77, 0.18), 0 6px 18px rgba(0, 26, 77, 0.10);
}
#navbar .nav-links a { color: #001a4d; }
#navbar .nav-links a:hover { color: #003399; }
#navbar .nav-cta {
  background: #003399 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.3);
}
#navbar .nav-cta:hover { background: #001f5c !important; }
#navbar .hamburger span { background: #001a4d; }
#navLogo { visibility: visible !important; height: 38px; width: auto; }

/* Garante visibilidade da logo do hero (sem animar/sumir) */
.hero-logo {
  opacity: 1 !important;
  transition: none !important;
}

/* Indicador de scroll do hero: sempre visível, escolhe ao chegar perto da próxima seção */
.hero-scroll-indicator {
  display: flex !important;
  text-decoration: none;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.3s ease;
}
.hero-scroll-indicator:hover { color: #ffffff; }
/* Some quando já saímos do hero */
body.hero-passed .hero-scroll-indicator {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  #navbar {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    padding: 0 14px;
  }
  #navLogo { height: 32px !important; }
}

/* ─── FORMULÁRIO MULTI-ETAPAS ─── */
.lead-form {
  max-width: 760px;
  margin: 28px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
  color: #ffffff;
}
.lf-progress { margin-bottom: 26px; }
.lf-progress-bar {
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(.22,.61,.36,1);
  margin-bottom: 14px;
  width: 25%;
}
.lf-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
}
.lf-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.lf-steps li span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.lf-steps li.active { color: #ffffff; }
.lf-steps li.active span { background: #ffffff; color: #003399; border-color: #ffffff; }
.lf-steps li.done span { background: rgba(255,255,255,0.85); color: #003399; border-color: rgba(255,255,255,0.85); }

.lf-step { display: none; }
.lf-step.active { display: block; animation: lfFadeIn 0.4s ease; }
@keyframes lfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lf-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 6px;
}
.lf-step-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}

.lf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field.lf-full { grid-column: 1 / -1; }
.lf-field > span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.lf-field input, .lf-field select, .lf-field textarea, .lead-form textarea {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.lf-field textarea, .lead-form textarea { resize: vertical; min-height: 110px; }
.lf-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.lf-field select option { background: #001a4d; color: #ffffff; }
.lf-field input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus, .lead-form textarea:focus {
  border-color: #ffffff;
  background: rgba(255,255,255,0.16);
}
.lf-field input.lf-error,
.lf-field select.lf-error,
.lf-field textarea.lf-error,
.lf-checkbox-grid.lf-error {
  border-color: #fca5a5 !important;
}
.lf-checkbox-grid.lf-error {
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 10px;
}
.lf-form-message {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(252, 165, 165, 0.5);
  background: rgba(127, 29, 29, 0.28);
  color: #fee2e2;
  font-weight: 700;
  font-size: 0.88rem;
}
.lf-form-message[data-type="info"] {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  color: #ffffff;
}

.lf-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.lf-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}
.lf-check:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.lf-check input { accent-color: #ffffff; width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.lf-check input:checked + span { color: #ffffff; }
.lf-check:has(input:checked) {
  background: rgba(255,255,255,0.20);
  border-color: #ffffff;
}

.lf-review {
  margin-top: 16px;
  background: rgba(0, 26, 77, 0.45);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 18px;
}
.lf-review h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.lf-review dl { display: grid; gap: 8px; margin: 0; }
.lf-review dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  font-size: 0.88rem;
}
.lf-review dt { color: rgba(255,255,255,0.55); font-weight: 500; }
.lf-review dd { color: #ffffff; margin: 0; word-break: break-word; }

.lf-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.lf-btn {
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.lf-btn-back {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}
.lf-btn-back:hover:not(:disabled) { background: rgba(255,255,255,0.18); }
.lf-btn-back:disabled { opacity: 0.4; cursor: not-allowed; }
.lf-btn-next, .lf-btn-submit {
  background: #ffffff;
  color: #003399;
  margin-left: auto;
  box-shadow: 0 12px 28px rgba(255,255,255,0.15);
}
.lf-btn-next:hover, .lf-btn-submit:hover { background: #eaf0ff; transform: translateY(-2px); }
.lf-btn-submit:disabled { opacity: 0.7; cursor: wait; transform: none; }

.lf-success {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 40px 28px;
  color: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lf-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #003399;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(255,255,255,0.18);
}
.lf-success-icon svg { width: 28px; height: 28px; stroke-width: 3; }
.lf-success h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.lf-success p { color: rgba(255,255,255,0.78); line-height: 1.6; }

@media (max-width: 600px) {
  .lead-form { padding: 22px 18px; }
  .lf-grid { grid-template-columns: 1fr; }
  .lf-steps { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .lf-steps li { font-size: 0.6rem; letter-spacing: 0.04em; }
  .lf-steps li span { width: 22px; height: 22px; font-size: 0.65rem; }
  .lf-review dl > div { grid-template-columns: 1fr; gap: 2px; }
  .lf-review dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; }
  .lf-btn-next, .lf-btn-submit { margin-left: 0; flex: 1 1 100%; justify-content: center; }
}

/* Hero final fit: imagem, overlay e conteúdo em camadas previsíveis */
.hero {
  position: relative;
  isolation: isolate;
  background: #001a4d;
}
.hero-carousel {
  z-index: 0 !important;
}
.hero-slide {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  animation: none !important;
}
.hero-slide:nth-child(1) {
  background-image: url('../img/Hero-1.png') !important;
  background-position: right center !important;
  opacity: 1 !important;
}
.hero::before {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(0, 26, 77, 0.78) 0%, rgba(0, 26, 77, 0.48) 40%, rgba(0, 26, 77, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 26, 77, 0.62) 0%, rgba(0, 26, 77, 0.06) 56%, rgba(0, 26, 77, 0.22) 100%) !important;
}
.hero::after {
  z-index: 1 !important;
  display: none !important;
}
.hero-inner,
.hero-scroll-indicator {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slide:nth-child(1) {
    background-position: 50% center !important;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 26, 77, 0.76), rgba(0, 26, 77, 0.34)),
      linear-gradient(0deg, rgba(0, 26, 77, 0.68), rgba(0, 26, 77, 0.18)) !important;
  }
}

/* ═══════════════════════════════════════════════════
   FORMULÁRIO MULTI-ETAPAS – REDESIGN V2
   ═══════════════════════════════════════════════════ */

.lead-form {
  max-width: 820px !important;
  margin: 36px auto 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 24px !important;
  padding: 36px 36px 30px !important;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    0 30px 80px rgba(0, 12, 38, 0.35),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(circle at 50% -40%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

/* ─── PROGRESS ELEGANTE COM PASSOS CONECTADOS ─── */
.lf-progress {
  margin-bottom: 34px !important;
  position: relative;
}
.lf-progress-bar { display: none; }
.lf-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  position: relative;
  padding-top: 8px;
}
.lf-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.16);
  z-index: 0;
}
.lf-steps::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.7));
  z-index: 0;
  width: 0;
  transition: width 0.5s cubic-bezier(.22,.61,.36,1);
  border-radius: 2px;
}
.lf-steps[data-progress="1"]::after { width: 0; }
.lf-steps[data-progress="2"]::after { width: 25%; }
.lf-steps[data-progress="3"]::after { width: 50%; }
.lf-steps[data-progress="4"]::after { width: 75%; }

.lf-steps li {
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.55) !important;
}
.lf-steps li span {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.9rem !important;
  font-weight: 800;
  background: rgba(5, 18, 44, 0.7) !important;
  border: 2px solid rgba(255,255,255,0.22) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(.22,.61,.36,1) !important;
}
.lf-steps li.active span {
  background: #ffffff !important;
  color: #003399 !important;
  border-color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(255,255,255,0.25);
}
.lf-steps li.done span {
  background: linear-gradient(135deg, #ffffff, #dbe7ff) !important;
  color: #003399 !important;
  border-color: #ffffff !important;
}
.lf-steps li.active { color: #ffffff !important; }

/* ─── CABEÇALHO DO STEP ─── */
.lf-step-title {
  font-size: 1.5rem !important;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lf-step-desc {
  font-size: 0.95rem !important;
  margin-bottom: 26px !important;
  color: rgba(255,255,255,0.75) !important;
}

/* ─── CAMPOS (label flutuante visual) ─── */
.lf-grid { gap: 18px !important; }
.lf-field { position: relative; gap: 0 !important; }
.lf-field > span {
  position: absolute;
  top: -8px;
  left: 14px;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95) !important;
  background: linear-gradient(180deg, transparent 45%, #001a4d 45%);
  padding: 0 8px;
  border-radius: 4px;
  z-index: 2;
}
.lf-field input,
.lf-field select,
.lf-field textarea,
.lead-form textarea {
  padding: 16px 16px !important;
  font-size: 0.98rem !important;
  border-radius: 12px !important;
  background: rgba(5, 18, 44, 0.35) !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
  transition: all 0.2s ease !important;
}
.lf-field textarea, .lead-form textarea { min-height: 110px !important; }
.lf-field input:focus,
.lf-field select:focus,
.lf-field textarea:focus,
.lead-form textarea:focus {
  border-color: #ffffff !important;
  background: rgba(5, 18, 44, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}
.lf-field input.lf-error,
.lf-field select.lf-error,
.lf-field textarea.lf-error {
  border-color: #fca5a5 !important;
  box-shadow: 0 0 0 4px rgba(252, 165, 165, 0.18) !important;
}

/* ─── CHECKBOXES PRODUTOS – CHIPS ─── */
.lf-checkbox-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
  gap: 12px !important;
}
.lf-check {
  padding: 14px 16px !important;
  border-radius: 12px !important;
  background: rgba(5, 18, 44, 0.35) !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease !important;
}
.lf-check::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lf-check:hover {
  border-color: rgba(255,255,255,0.45) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.lf-check:hover::before { opacity: 1; }
.lf-check input {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 6px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  margin: 0;
}
.lf-check input::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #003399;
  border-bottom: 2px solid #003399;
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform 0.18s ease;
}
.lf-check input:checked { background: #ffffff; border-color: #ffffff; }
.lf-check input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.lf-check span { position: relative; z-index: 1; }
.lf-check:has(input:checked) {
  background: rgba(255,255,255,0.18) !important;
  border-color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(255,255,255,0.10);
}

/* ─── REVISÃO REDESENHADA ─── */
.lf-review {
  margin-top: 22px !important;
  background: linear-gradient(135deg, rgba(0,26,77,0.6), rgba(0,51,153,0.35)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}
.lf-review h4 {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem !important;
  margin-bottom: 16px !important;
}
.lf-review h4::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: #003399;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}
.lf-review dl {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px !important;
}
.lf-review dl > div {
  display: flex !important;
  flex-direction: column;
  gap: 4px !important;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  grid-template-columns: none !important;
}
.lf-review dt {
  font-size: 0.66rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6) !important;
  font-weight: 700 !important;
}
.lf-review dd { font-size: 0.92rem !important; font-weight: 600; }

/* ─── BOTÕES DE AÇÃO ─── */
.lf-actions {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.lf-btn {
  padding: 14px 26px !important;
  border-radius: 12px !important;
  font-size: 0.94rem !important;
  letter-spacing: 0.01em;
}
.lf-btn-back {
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(255,255,255,0.20) !important;
}
.lf-btn-back::before { content: '←'; font-size: 1.1rem; line-height: 1; }
.lf-btn-next, .lf-btn-submit {
  background: #ffffff !important;
  color: #003399 !important;
  box-shadow: 0 16px 36px rgba(255,255,255,0.18), 0 0 0 1px rgba(255,255,255,0.6) inset !important;
}
.lf-btn-next:hover, .lf-btn-submit:hover {
  background: #eaf0ff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 22px 44px rgba(255,255,255,0.22), 0 0 0 1px rgba(255,255,255,0.7) inset !important;
}
.lf-btn-submit {
  background: linear-gradient(135deg, #ffffff, #dbe7ff) !important;
  font-weight: 800 !important;
}

/* ─── SUCESSO REDESENHADO ─── */
.lf-success {
  max-width: 600px !important;
  padding: 50px 32px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  position: relative;
  overflow: hidden;
}
.lf-success::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
}
.lf-success-icon {
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 22px !important;
  background: linear-gradient(135deg, #ffffff, #dbe7ff) !important;
  box-shadow: 0 20px 40px rgba(255,255,255,0.25), 0 0 0 8px rgba(255,255,255,0.10);
  position: relative;
  z-index: 1;
  animation: successPop 0.6s cubic-bezier(.34,1.56,.64,1);
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.lf-success-icon svg { width: 36px !important; height: 36px !important; }
.lf-success h3 {
  font-size: 1.6rem !important;
  position: relative;
  z-index: 1;
}
.lf-success p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .lead-form {
    padding: 26px 20px !important;
    margin: 24px auto 0 !important;
    border-radius: 18px !important;
  }
  .lf-steps li { font-size: 0.6rem !important; letter-spacing: 0.04em !important; }
  .lf-steps li span { width: 30px !important; height: 30px !important; font-size: 0.78rem !important; }
  .lf-steps::before, .lf-steps::after { top: 21px; }
  .lf-step-title { font-size: 1.2rem !important; }
  .lf-grid { grid-template-columns: 1fr !important; }
  .lf-review dl { grid-template-columns: 1fr !important; }
  .lf-checkbox-grid { grid-template-columns: 1fr 1fr !important; }
  .lf-actions { flex-direction: column-reverse !important; }
  .lf-btn-next, .lf-btn-submit, .lf-btn-back { width: 100% !important; justify-content: center !important; margin: 0 !important; }
}

/* ═══════════════════════════════════════════════════
   FORMULÁRIO – AJUSTES V3 (campos mais compactos,
   botões corrigidos, labels mais elegantes)
   ═══════════════════════════════════════════════════ */

/* Corrige o hidden ignorado pelo display:inline-flex !important */
.lf-btn[hidden], [hidden] { display: none !important; }

/* Card do form: padding um pouco menor */
.lead-form {
  padding: 30px 32px 26px !important;
}

/* Labels: pílula azul mais discreta, fonte um pouco menor, sem caixa alta agressiva */
.lf-field > span {
  position: absolute;
  top: -7px !important;
  left: 14px !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
  background: #001a4d !important;
  padding: 2px 8px !important;
  border-radius: 5px !important;
  z-index: 2;
  line-height: 1.2 !important;
  white-space: nowrap;
}

/* Campos mais baixos e respiráveis */
.lf-field input,
.lf-field select,
.lf-field textarea,
.lead-form textarea {
  padding: 12px 14px !important;
  font-size: 0.92rem !important;
  border-radius: 10px !important;
  min-height: 46px !important;
  line-height: 1.4 !important;
}
.lf-field textarea, .lead-form textarea {
  min-height: 96px !important;
  padding: 12px 14px !important;
  line-height: 1.5 !important;
}

/* Grid de campos com menos gap vertical */
.lf-grid {
  gap: 22px 16px !important;
}

/* Step header mais compacto */
.lf-step-title { font-size: 1.35rem !important; }
.lf-step-desc { margin-bottom: 20px !important; }

/* AÇÕES: botões organizados — Voltar à esquerda, Próximo/Enviar à direita.
   Só um dos dois (Próximo OU Enviar) aparece por vez. */
.lf-actions {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  gap: 12px;
  margin-top: 24px !important;
  padding-top: 18px;
}
.lf-btn-back { margin-right: auto; }
.lf-btn-next, .lf-btn-submit {
  margin-left: auto !important;
}

/* Bloco de confiança (Sem compromisso / Resposta 24h / Consultoria gratuita) */
.lead-form .cta-trust {
  display: flex !important;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 700px) {
  .lead-form { padding: 24px 18px 22px !important; }
  .lf-field input, .lf-field select, .lf-field textarea { font-size: 0.95rem !important; min-height: 44px !important; }
  .lf-field > span { font-size: 0.62rem !important; }
  .lf-actions { flex-direction: column-reverse !important; }
  .lf-btn-back, .lf-btn-next, .lf-btn-submit { width: 100% !important; justify-content: center !important; margin: 0 !important; }
}

/* FINAL: garante que [hidden] esconda mesmo com display:inline-flex !important antes */
.lf-btn[hidden],
button[hidden],
[hidden] {
  display: none !important;
}

/* ─── PLAYER INLINE NA HOME (Programa Revenda Champion) ─── */
.home-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  cursor: pointer;
}
.home-video-player .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.home-video-player:hover .video-thumb {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.home-video-player .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.home-video-player .video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 51, 153, 0.92);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, background 0.3s ease;
}
.home-video-player:hover .video-play-btn {
  transform: scale(1.1);
  background: #ffffff;
  color: #003399;
}
.home-video-player .video-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.home-video-player.playing .video-thumb,
.home-video-player.playing .video-play { display: none; }
.home-video-player .video-iframe-wrap,
.home-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-video-player .video-fallback {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 2;
}
.home-video-player.playing:hover .video-fallback { opacity: 1; }
.home-video-player .video-fallback:hover { background: #ff0000; }

/* ════════════════════════════════════════════════════
   MOBILE V2 — Responsividade e usabilidade refinada
   ════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  html { font-size: 15px; }
  body { line-height: 1.55; }
  a, button, input[type="submit"], .btn-primary, .btn-secondary, .lf-btn { min-height: 44px; }
  input, select, textarea { font-size: 16px !important; }
  .container { padding-left: 0; padding-right: 0; }
}

/* NAV mobile */
@media (max-width: 768px) {
  #navbar {
    top: 8px !important;
    width: calc(100% - 16px) !important;
    height: 56px !important;
    padding: 0 12px !important;
    border-radius: 14px !important;
  }
  #navLogo { height: 30px !important; }
  .nav-cta { padding: 7px 14px !important; font-size: 0.78rem !important; }
  .hamburger { padding: 8px; }
  .mobile-menu {
    top: 70px !important;
    left: 8px !important;
    right: 8px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }
  .mobile-menu a {
    font-size: 1rem;
    padding: 12px 8px !important;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-menu a.mobile-cta {
    padding: 14px !important;
    justify-content: center;
    margin-top: 10px !important;
    border-radius: 12px !important;
  }
}

/* HERO */
@media (max-width: 768px) {
  .hero { min-height: 92vh !important; padding: 90px 5% 32px !important; }
  .hero-inner { padding: 16px 0 0 !important; gap: 18px !important; }
  .hero-logo { width: 160px !important; margin-bottom: 8px !important; }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.3rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 22px !important;
    font-size: 0.94rem !important;
  }
  .hero-stats {
    padding: 14px 16px !important;
    margin-top: 8px !important;
    border-radius: 12px !important;
  }
  .hero-stats-row { flex-direction: row !important; flex-wrap: wrap; gap: 8px 0; }
  .hero-stat {
    flex: 1 1 33% !important;
    border-right: none !important;
    border-bottom: none !important;
    padding: 4px 8px !important;
    text-align: center;
    min-width: 0;
  }
  .hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.14) !important; }
  .hero-stat-num { font-size: 1.05rem !important; justify-content: center; flex-wrap: wrap; }
  .hero-stat-label { font-size: 0.62rem !important; }
  .hero-proof-strip {
    grid-template-columns: 1fr 1fr !important;
    padding-top: 10px !important;
    gap: 6px !important;
  }
  .hero-proof {
    padding: 6px 8px !important;
    min-height: 34px !important;
    font-size: 0.62rem !important;
    gap: 4px !important;
  }
  .hero-proof .icon { width: 12px !important; height: 12px !important; }
  .hero-scroll-indicator { bottom: 8px !important; padding: 4px 10px !important; font-size: 0.6rem !important; }
  .hero-scroll-mouse { width: 18px !important; height: 28px !important; }
}

/* SEÇÕES */
@media (max-width: 768px) {
  section { padding: 56px 5% !important; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; line-height: 1.2 !important; }
  .section-eyebrow { font-size: 0.68rem !important; padding: 5px 12px !important; }
  .section-desc { font-size: 0.94rem !important; line-height: 1.6 !important; }
  #compromisso .section-title,
  #champion .section-title {
    white-space: normal !important;
    text-align: center;
  }
}

/* BENEFÍCIOS */
@media (max-width: 768px) {
  .benefits-header { grid-template-columns: 1fr !important; gap: 24px !important; }
  .benefits-photo { order: 2; aspect-ratio: 16/10 !important; }
  .benefits-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .benefit-card { padding: 22px 20px !important; }
  .benefit-icon { width: 44px !important; height: 44px !important; }
  .benefit-title { font-size: 1rem !important; }
  .benefit-text { font-size: 0.9rem !important; }
}

/* PRODUTOS */
@media (max-width: 768px) {
  .products-showcase {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 32px !important;
  }
  .product-showcase-card { border-radius: 14px !important; }
  .ps-media { height: 140px !important; }
  .ps-icon { width: 34px !important; height: 34px !important; left: 8px !important; bottom: 8px !important; }
  .ps-icon svg { width: 16px !important; height: 16px !important; }
  .ps-body { padding: 14px !important; }
  .ps-category { font-size: 0.6rem !important; letter-spacing: 0.08em !important; }
  .ps-name { font-size: 0.92rem !important; margin-bottom: 6px !important; }
  .ps-desc { font-size: 0.78rem !important; line-height: 1.45 !important; }
}
@media (max-width: 420px) {
  .products-showcase { grid-template-columns: 1fr !important; gap: 14px !important; }
  .ps-media { height: 200px !important; }
}

/* COMPROMISSO */
@media (max-width: 768px) {
  .commitment-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .commitment-visual {
    order: 2;
    min-height: 280px !important;
    border-radius: 16px;
    background-position: center 25% !important;
  }
  .cv-grid { grid-template-columns: 1fr !important; gap: 10px !important; margin-bottom: 18px !important; }
  .cv-grid .cv-item { padding: 14px !important; }
  .cv-grid .cv-title { font-size: 0.88rem !important; }
  .cv-grid .cv-desc { font-size: 0.82rem !important; }
  .commitment-item { padding: 18px 0 !important; gap: 16px !important; }
  .ci-num { font-size: 1.6rem !important; width: 36px !important; }
  .ci-title { font-size: 0.95rem !important; }
  .ci-desc { font-size: 0.86rem !important; }
}

/* A CHAMPION */
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .stats-cluster { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .about-photo-main { min-height: 240px !important; max-height: 280px !important; border-radius: 14px !important; }
  .stat-block { padding: 18px !important; border-radius: 12px !important; }
  .stat-block.large { grid-column: 1 / -1 !important; padding: 22px !important; }
  .stat-block-num { font-size: clamp(1.5rem, 7vw, 1.9rem) !important; }
  .stat-block-label { font-size: 0.72rem !important; line-height: 1.4 !important; }
  .feature-list { gap: 10px !important; margin-top: 10px; }
  .feature-item { font-size: 0.88rem !important; }
  .feature-ico { width: 30px !important; height: 30px !important; }
  .feature-ico svg { width: 16px !important; height: 16px !important; }
}
@media (max-width: 420px) {
  .stats-cluster { grid-template-columns: 1fr !important; }
}

/* TREINAMENTOS */
@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr !important; gap: 16px !important; margin-top: 28px !important; }
  .training-card { border-radius: 14px !important; }
  .tc-image { height: 180px !important; }
  .tc-icon { width: 36px !important; height: 36px !important; left: 12px !important; bottom: 12px !important; }
  .tc-body { padding: 18px !important; }
  .tc-title { font-size: 0.98rem !important; }
  .tc-desc { font-size: 0.86rem !important; }
}

/* CTA / FORMULÁRIO */
@media (max-width: 768px) {
  #cadastre { padding: 60px 5% !important; }
  #cadastre .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .cta-desc { font-size: 0.92rem !important; margin-bottom: 24px !important; }
  .lead-form { padding: 22px 16px !important; border-radius: 16px !important; }
  .lf-progress { margin-bottom: 24px !important; }
  .lf-steps li {
    font-size: 0 !important;
    gap: 0 !important;
  }
  .lf-steps li span {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.78rem !important;
  }
  .lf-steps::before, .lf-steps::after { top: 14px !important; }
  .lf-step-title { font-size: 1.15rem !important; }
  .lf-step-desc { font-size: 0.88rem !important; margin-bottom: 18px !important; }
  .lf-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .lf-field > span { font-size: 0.62rem !important; padding: 2px 6px !important; }
  .lf-field input, .lf-field select, .lf-field textarea {
    padding: 14px !important;
    min-height: 50px !important;
  }
  .lf-checkbox-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .lf-check { padding: 12px !important; font-size: 0.82rem !important; }
  .lf-check input { width: 18px !important; height: 18px !important; }
  .lf-review dl { grid-template-columns: 1fr !important; }
  .lf-actions { flex-direction: column-reverse !important; gap: 10px !important; }
  .lf-btn { width: 100% !important; justify-content: center !important; padding: 14px !important; }
  .lf-success { padding: 32px 22px !important; }
  .lf-success h3 { font-size: 1.3rem !important; }
  .lf-success p { font-size: 0.92rem !important; }
  .cta-trust { flex-direction: column !important; gap: 8px !important; }
}

/* FOOTER */
@media (max-width: 768px) {
  footer { padding: 48px 5% 28px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; text-align: left; }
  .footer-logo-img { width: 180px !important; margin: 0 0 14px !important; }
  .footer-about { font-size: 0.88rem !important; }
  .footer-col h4 { font-size: 0.78rem !important; }
  .footer-col ul li a { font-size: 0.92rem !important; padding: 4px 0; display: inline-block; }
  .social-links { gap: 12px; }
  .social-link { width: 42px !important; height: 42px !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 8px !important; }
}

/* Vídeo home (programa) */
@media (max-width: 768px) {
  .home-video-player { border-radius: 14px !important; }
  .home-video-player .video-play-btn { width: 60px !important; height: 60px !important; }
  .home-video-player .video-play-btn svg { width: 22px !important; height: 22px !important; }
  .programa-video-card .video-body { padding: 18px !important; }
  .programa-video-card .video-title { font-size: 1.05rem !important; }
}
