/* Start custom CSS for html, class: .elementor-element-29aeb8e */:root{
    --ink:#1a1a1a;
    --ink-2:#222222;
    --red:#bd0202;
    --red-dark:#8f0202;
    --amber:#fb9902;
    --amber-light:#ffb84d;
    --cream:#f4f1eb;
    --paper:#fbfaf7;
    --grey:#6b6864;
    --line:rgba(34,34,34,0.12);
    --white:#ffffff;

    --font-display:'Oswald', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'Space Mono', monospace;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--paper);
    line-height:1.5;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}

  .wrap{max-width:1180px;margin:0 auto;padding:0 24px;}

  h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;letter-spacing:-0.01em;line-height:1.08;}
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--red);
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:22px;height:2px;
    background:var(--amber);
    display:inline-block;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ============ diagonal stripe divider (signature motif) ============ */
  .stripe-divider{
    position:relative;
    height:46px;
    background:var(--ink-2);
    overflow:hidden;
  }
  .stripe-divider::before,
  .stripe-divider::after{
    content:"";
    position:absolute;
    top:-20px;
    height:120%;
    width:60px;
    transform:skewX(-24deg);
  }
  .stripe-divider::before{ background:var(--red); left:38%; }
  .stripe-divider::after{ background:var(--amber); left:44%; }

  .stripe-divider.light{ background:var(--paper); }
  .stripe-divider.cream{ background:var(--cream); }

  /* ============ NAV ============ */
  header.site-nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(26,26,26,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; max-width:1180px; margin:0 auto;
  }
  .logo{
    font-family:var(--font-display);
    color:var(--white);
    font-size:20px;
    letter-spacing:0.02em;
    display:flex; align-items:center; gap:10px;
  }
  .logo .dot{
    width:11px;height:11px;border-radius:2px;
    background:var(--red);
    transform:rotate(45deg);
    position:relative;
  }
  .logo .dot::after{
    content:"";
    position:absolute; inset:0;
    background:var(--amber);
    clip-path:polygon(0 0, 50% 0, 0 50%);
  }
  .logo span{color:var(--amber);}
  .nav-links{display:flex; gap:32px; align-items:center;}
  .nav-links a{
    color:rgba(255,255,255,0.75);
    font-size:14px; font-weight:500;
    transition:color .2s;
  }
  .nav-links a:hover{color:var(--white);}
  .nav-cta{
    background:var(--red);
    color:var(--white) !important;
    padding:10px 20px;
    font-weight:600; font-size:14px;
    border-radius:3px;
    transition:background .2s, transform .2s;
  }
  .nav-cta:hover{background:var(--red-dark); transform:translateY(-1px);}
  .nav-toggle{display:none; flex-direction:column; gap:5px; padding:6px;}
  .nav-toggle span{width:24px; height:2px; background:var(--white); display:block;}

  /* ============ HERO ============ */
  .hero{
    background:var(--ink-2);
    color:var(--white);
    padding:168px 0 110px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-30%; right:-8%;
    width:640px; height:640px;
    background:radial-gradient(circle, rgba(189,2,2,0.35) 0%, rgba(189,2,2,0) 68%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
    position:relative;
    z-index:2;
  }
  .hero h1{
    font-size:clamp(34px, 4.6vw, 54px);
    color:var(--white);
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:normal;
    background:linear-gradient(92deg, var(--amber), var(--red));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero p.lead{
    font-size:17px;
    color:rgba(255,255,255,0.72);
    max-width:480px;
    margin-bottom:34px;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:15px 26px;
    font-weight:600; font-size:15px;
    border-radius:3px;
    transition:transform .2s, box-shadow .2s, background .2s;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--red);
    color:var(--white);
    box-shadow:0 8px 24px -8px rgba(189,2,2,0.65);
  }
  .btn-primary:hover{transform:translateY(-2px); background:var(--red-dark);}
  .btn-ghost{
    border:1px solid rgba(255,255,255,0.28);
    color:var(--white);
  }
  .btn-ghost:hover{border-color:var(--amber); color:var(--amber);}
  .btn-dark{
    background:var(--ink-2);
    color:var(--white);
  }
  .btn-dark:hover{background:#000;}

  /* hero mockup card */
  .hero-mock{
    background:var(--paper);
    border-radius:10px;
    padding:14px;
    box-shadow:0 40px 80px -30px rgba(0,0,0,0.55);
    transform:rotate(1.2deg);
  }
  .hero-mock-bar{
    display:flex; gap:6px; padding:4px 6px 12px;
  }
  .hero-mock-bar span{width:9px; height:9px; border-radius:50%; background:var(--line);}
  .hero-mock-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .mock-car{
    background:var(--white);
    border-radius:7px;
    overflow:hidden;
    border:1px solid var(--line);
  }
  .mock-car .photo{
    height:64px;
    background:linear-gradient(135deg, var(--ink-2), #3a3a3a);
    position:relative;
  }
  .mock-car .photo::after{
    content:"";
    position:absolute; bottom:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--amber), var(--red));
  }
  .mock-car .info{padding:9px 10px;}
  .mock-car .info .name{font-size:11px; font-weight:700; font-family:var(--font-display);}
  .mock-car .info .price{font-family:var(--font-mono); font-size:11px; color:var(--red); margin-top:2px;}

  /* ============ SECTION GENERICS ============ */
  section{padding:96px 0;}
  .section-cream{background:var(--cream);}
  .section-dark{background:var(--ink-2); color:var(--white);}
  .section-dark .eyebrow{color:var(--amber);}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .section-head h2{font-size:clamp(26px,3.4vw,38px); margin-bottom:16px;}
  .section-head p{color:var(--grey); font-size:16px;}
  .section-dark .section-head p{color:rgba(255,255,255,0.7);}

  /* cards row - 3 benefit cards */
  .cards-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .feature-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    padding:30px 26px;
    transition:transform .25s, box-shadow .25s, border-color .25s;
  }
  .feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px -20px rgba(34,34,34,0.25);
    border-color:transparent;
  }
  .feature-card .ic{font-size:26px; margin-bottom:16px; display:block;}
  .feature-card h3{font-size:18px; margin-bottom:10px;}
  .feature-card p{color:var(--grey); font-size:14.5px;}

  /* ============ COMO FUNCIONA - odometer steps ============ */
  .steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    counter-reset:step;
    border-top:1px solid rgba(255,255,255,0.12);
  }
  .step{
    padding:34px 22px 0 0;
    border-right:1px solid rgba(255,255,255,0.12);
    position:relative;
  }
  .step:last-child{border-right:none;}
  .step .odo{
    font-family:var(--font-mono);
    font-size:13px;
    color:var(--ink-2);
    background:var(--amber);
    display:inline-block;
    padding:3px 9px;
    border-radius:2px;
    letter-spacing:0.05em;
    margin-bottom:18px;
  }
  .step h3{font-size:17px; margin-bottom:10px; color:var(--white);}
  .step p{font-size:14px; color:rgba(255,255,255,0.65); padding-right:14px;}

  /* ============ DEMO SECTION ============ */
  .demo-panel{
    background:var(--ink-2);
    border-radius:14px;
    padding:8px;
    box-shadow:0 30px 70px -30px rgba(0,0,0,0.35);
  }
  .demo-topbar{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 20px;
  }
  .demo-topbar .dots{display:flex; gap:6px;}
  .demo-topbar .dots span{width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.18);}
  .demo-topbar .url{
    font-family:var(--font-mono);
    font-size:12px;
    color:rgba(255,255,255,0.55);
    background:rgba(255,255,255,0.06);
    padding:6px 16px;
    border-radius:20px;
  }
  .demo-body{
    background:var(--paper);
    border-radius:9px;
    padding:26px;
  }
  .demo-header{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:22px; flex-wrap:wrap; gap:14px;
  }
  .demo-header h4{font-size:22px;}
  .demo-header .badge{
    font-family:var(--font-mono); font-size:11px;
    background:var(--red); color:var(--white);
    padding:5px 10px; border-radius:3px;
  }
  .demo-filters{display:flex; gap:8px; margin-bottom:22px; flex-wrap:wrap;}
  .demo-filters button{
    font-size:13px; font-weight:600;
    padding:8px 16px;
    border-radius:20px;
    border:1px solid var(--line);
    background:var(--white);
    color:var(--ink-2);
    transition:all .2s;
  }
  .demo-filters button.active,
  .demo-filters button:hover{
    background:var(--ink-2); color:var(--white); border-color:var(--ink-2);
  }
  .demo-cars{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .demo-car{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:9px;
    overflow:hidden;
    transition:transform .2s, box-shadow .2s;
  }
  .demo-car:hover{transform:translateY(-3px); box-shadow:0 16px 30px -18px rgba(0,0,0,0.3);}
  .demo-car .photo{
    height:110px;
    position:relative;
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,0.85);
    font-size:30px;
  }
  .demo-car .tag{
    position:absolute; top:8px; left:8px;
    font-family:var(--font-mono); font-size:10px;
    background:var(--amber); color:var(--ink-2);
    padding:3px 7px; border-radius:2px; font-weight:700;
  }
  .demo-car .info{padding:14px 14px 16px;}
  .demo-car .info .name{font-family:var(--font-display); font-size:15px; font-weight:600;}
  .demo-car .info .meta{font-size:12px; color:var(--grey); margin:4px 0 10px;}
  .demo-car .info .row{display:flex; justify-content:space-between; align-items:center;}
  .demo-car .info .price{font-family:var(--font-mono); color:var(--red); font-weight:700; font-size:15px;}
  .demo-car .info .wa{
    font-size:11px; font-weight:700; color:#1a7a3c;
    display:flex; align-items:center; gap:4px;
  }

  /* ============ RECURSOS grid ============ */
  .cards-4{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
  .mini-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:8px;
    padding:22px 20px;
  }
  .mini-card .ic{font-size:21px; margin-bottom:12px; display:block;}
  .mini-card h3{font-size:15px; margin-bottom:6px;}
  .mini-card p{font-size:13px; color:var(--grey);}

  /* ============ PLANOS ============ */
  .plans{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    align-items:start;
  }
  .plan{
    background:#2a2a2a;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:10px;
    padding:32px 28px;
    position:relative;
  }
  .plan .tier{
    font-family:var(--font-mono);
    font-size:11px; letter-spacing:.1em; text-transform:uppercase;
    display:inline-block; margin-bottom:16px;
    padding:4px 10px; border-radius:2px;
  }
  .plan.basic .tier{background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.8);}
  .plan.pro .tier{background:var(--red); color:var(--white);}
  .plan.premium .tier{background:var(--amber); color:var(--ink-2);}

  .plan.pro{
    background:linear-gradient(165deg,#2f2320,#241a18);
    border:1px solid var(--red);
    transform:scale(1.045);
    box-shadow:0 30px 60px -25px rgba(189,2,2,0.5);
  }
  .plan-badge{
    position:absolute; top:-13px; right:28px;
    background:var(--amber); color:var(--ink-2);
    font-family:var(--font-mono); font-size:11px; font-weight:700;
    padding:5px 12px; border-radius:20px;
  }
  .plan h3{font-size:20px; color:var(--white); margin-bottom:4px;}
  .plan .desc{font-size:13.5px; color:rgba(255,255,255,0.55); margin-bottom:22px; min-height:36px;}
  .plan .price{
    font-family:var(--font-mono);
    display:flex; align-items:baseline; gap:6px;
    margin-bottom:26px;
  }
  .plan .price .num{font-size:34px; font-weight:700; color:var(--white);}
  .plan .price .per{font-size:13px; color:rgba(255,255,255,0.5);}
  .plan ul{margin-bottom:28px;}
  .plan li{
    font-size:13.5px; color:rgba(255,255,255,0.8);
    padding:8px 0; border-top:1px solid rgba(255,255,255,0.08);
    display:flex; gap:9px; align-items:flex-start;
  }
  .plan li:first-child{border-top:none;}
  .plan li::before{content:"✓"; color:var(--amber); font-weight:700; flex-shrink:0;}
  .plan .btn{width:100%; justify-content:center;}

  /* ============ COMPARATIVE TABLE ============ */
  .compare-wrap{overflow-x:auto;}
  table.compare{
    width:100%; border-collapse:collapse;
    background:var(--white);
    border-radius:8px; overflow:hidden;
    min-width:560px;
  }
  table.compare th, table.compare td{
    padding:15px 18px; text-align:center;
    border-bottom:1px solid var(--line);
    font-size:14px;
  }
  table.compare th{
    font-family:var(--font-display); font-weight:500;
    background:var(--ink-2); color:var(--white);
  }
  table.compare td:first-child, table.compare th:first-child{
    text-align:left; font-weight:600;
  }
  table.compare tr:last-child td{border-bottom:none;}
  table.compare td.yes{color:var(--red); font-weight:700;}
  table.compare td.no{color:var(--line);}
  table.compare th:nth-child(3){background:var(--red);}

  /* ============ OBJECTION BREAK ============ */
  .objection{
    background:linear-gradient(120deg, var(--amber), #ffb703);
    color:var(--ink-2);
    padding:80px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .objection::before, .objection::after{
    content:"";
    position:absolute; top:-40%; height:180%; width:90px;
    background:rgba(34,34,34,0.06);
    transform:skewX(-20deg);
  }
  .objection::before{left:12%;}
  .objection::after{left:20%;}
  .objection .wrap{position:relative; z-index:2;}
  .objection h2{font-size:clamp(24px,3.6vw,36px); max-width:680px; margin:0 auto 18px;}
  .objection p{max-width:560px; margin:0 auto 10px; font-size:16px; color:rgba(34,34,34,0.78);}
  .objection .tagline{
    font-family:var(--font-display); font-weight:600; font-size:19px;
    margin-top:22px;
  }

  /* ============ BENEFITS ============ */
  .benefits{display:grid; grid-template-columns:repeat(5,1fr); gap:18px;}
  .benefit{text-align:left;}
  .benefit .num{
    font-family:var(--font-mono); font-size:12px; color:var(--red);
    margin-bottom:10px; display:block;
  }
  .benefit h3{font-size:16px; margin-bottom:8px;}
  .benefit p{font-size:13.5px; color:var(--grey);}

  /* ============ FAQ ============ */
  .faq-list{max-width:760px; margin:0 auto;}
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-q{
    width:100%; text-align:left;
    padding:22px 4px;
    display:flex; align-items:center; justify-content:space-between;
    font-family:var(--font-display); font-size:16.5px; font-weight:500;
    gap:20px;
  }
  .faq-q .plus{
    font-family:var(--font-mono);
    font-size:20px; color:var(--red);
    transition:transform .25s;
    flex-shrink:0;
  }
  .faq-item.open .faq-q .plus{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden;
    transition:max-height .3s ease, padding .3s ease;
    font-size:14.5px; color:var(--grey); padding:0 4px;
  }
  .faq-item.open .faq-a{max-height:200px; padding-bottom:20px;}

  /* ============ FINAL CTA ============ */
  .final-cta{
    background:var(--ink-2);
    color:var(--white);
    text-align:center;
    padding:110px 0;
    position:relative;
    overflow:hidden;
  }
  .final-cta::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(circle at 15% 20%, rgba(189,2,2,0.28), transparent 45%),
      radial-gradient(circle at 85% 80%, rgba(251,153,2,0.22), transparent 45%);
  }
  .final-cta .wrap{position:relative; z-index:2;}
  .final-cta h2{font-size:clamp(28px,4vw,44px); max-width:760px; margin:0 auto 20px;}
  .final-cta p{color:rgba(255,255,255,0.68); max-width:520px; margin:0 auto 34px; font-size:16px;}
  .final-cta .actions{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
  .final-cta .see-demo{
    display:block; margin-top:20px; font-size:14px;
    color:rgba(255,255,255,0.55); text-decoration:underline;
  }
  .final-cta .see-demo:hover{color:var(--amber);}

  /* ============ FOOTER ============ */
  footer{background:#181818; color:rgba(255,255,255,0.55); padding:44px 0; font-size:13.5px;}
  .footer-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;}
  footer .logo{color:rgba(255,255,255,0.8); font-size:16px;}

  /* ============ scroll reveal ============ */
  .reveal{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ============ RESPONSIVE ============ */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-mock{max-width:420px;}
    .cards-3{grid-template-columns:1fr 1fr;}
    .cards-4{grid-template-columns:1fr 1fr;}
    .steps{grid-template-columns:1fr 1fr;}
    .step{border-bottom:1px solid rgba(255,255,255,0.12); padding-bottom:26px;}
    .plans{grid-template-columns:1fr; max-width:420px; margin:0 auto;}
    .plan.pro{transform:none;}
    .demo-cars{grid-template-columns:1fr 1fr;}
    .benefits{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:720px){
    .nav-links{
      position:absolute; top:100%; left:0; right:0;
      background:var(--ink-2);
      flex-direction:column; align-items:flex-start;
      padding:20px 24px; gap:18px;
      display:none;
      border-top:1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open{display:flex;}
    .nav-toggle{display:flex;}
    .cards-3{grid-template-columns:1fr;}
    .cards-4{grid-template-columns:1fr;}
    .steps{grid-template-columns:1fr;}
    .demo-cars{grid-template-columns:1fr;}
    .benefits{grid-template-columns:1fr;}
    table.compare{font-size:12.5px;}
    .hero{padding:140px 0 80px;}
  }/* End custom CSS */