/* ============================================================
   S.S MOTORS ZARAGOZA — Gestión de venta de vehículos
   Tema CLARO · acento rojo · Oswald + Barlow
============================================================ */
:root{
  --white:#ffffff;
  --paper:#f5f6f8;
  --paper-2:#eef0f4;
  --line:#e2e5ea;
  --line-2:#d5d9e0;
  --ink:#14161c;
  --ink-2:#2a2e38;
  --muted:#5a6373;
  --muted-2:#828b9a;
  --red:#cc0000;
  --red-light:#e11414;
  --red-dark:#9c0000;
  --red-glow:rgba(204,0,0,0.18);
  --red-tint:#fbeaea;
  --steel:#1b1f27;      /* casi negro para footer/hero contrast */
  --steel-2:#242935;
  --wa:#25d366;
  --shadow-sm:0 2px 10px rgba(20,22,28,0.06);
  --shadow:0 10px 30px rgba(20,22,28,0.10);
  --shadow-lg:0 24px 60px rgba(20,22,28,0.16);
  --font-head:'Oswald',sans-serif;
  --font-body:'Barlow',sans-serif;
  --radius:6px;--radius-md:10px;--radius-lg:16px;
  --tr:.28s ease;--tr-slow:.55s cubic-bezier(.22,.61,.36,1);
  --max:1240px;
}
*,*::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(--ink-2);line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;font-family:var(--font-body);border:none;background:none}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);font-weight:600;text-transform:uppercase;letter-spacing:.02em;line-height:1.08;color:var(--ink)}
.container{max-width:var(--max);margin:0 auto;padding:0 2rem;width:100%}
.accent{color:var(--red)}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--font-head);font-weight:500;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;padding:.95rem 2rem;border-radius:var(--radius);transition:all var(--tr);cursor:pointer;white-space:nowrap}
.btn svg{width:18px;height:18px}
.btn-red{background:var(--red);color:#fff;box-shadow:0 6px 20px var(--red-glow)}
.btn-red:hover{background:var(--red-light);transform:translateY(-2px);box-shadow:0 10px 30px var(--red-glow)}
.btn-dark{background:var(--steel);color:#fff}
.btn-dark:hover{background:var(--steel-2);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink);border:1.5px solid var(--line-2)}
.btn-ghost:hover{border-color:var(--red);color:var(--red);transform:translateY(-2px)}
.btn-wa{background:var(--wa);color:#fff}
.btn-wa:hover{filter:brightness(.95);transform:translateY(-2px)}
.btn-sm{padding:.7rem 1.4rem;font-size:.75rem}
.btn-block{width:100%;justify-content:center}

/* ===== TOP BAR ===== */
#topbar{background:var(--steel);color:#c9ced8;font-size:.78rem;padding:.4rem 0;overflow:hidden}
.topbar-in{display:flex;align-items:center;justify-content:center;gap:2.2rem;flex-wrap:wrap}
.topbar-in a,.topbar-in span{display:inline-flex;align-items:center;gap:.4rem;color:#c9ced8;font-weight:400;white-space:nowrap;transition:color var(--tr)}
.topbar-in a:hover{color:#fff}
.topbar-in svg{width:14px;height:14px;color:var(--red-light)}
.ticker-wrap{display:none;overflow:hidden;width:100%}
.ticker-track{display:flex;gap:2.2rem;align-items:center;width:max-content;animation:ticker 26s linear infinite}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.ticker-track a,.ticker-track span{display:inline-flex;align-items:center;gap:.4rem;color:#c9ced8;white-space:nowrap;font-size:.78rem}
.ticker-track svg{width:14px;height:14px;color:var(--red-light)}

/* ===== NAV ===== */
#nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--line);height:72px;display:flex;align-items:center}
.nav-in{max-width:var(--max);margin:0 auto;padding:0 2rem;width:100%;display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:.65rem}
.nav-logo img{height:46px;width:auto;object-fit:contain}
.nav-logo-text{font-family:var(--font-head);font-weight:600;font-size:1.2rem;letter-spacing:.06em;color:var(--ink)}
.nav-logo-text em{color:var(--red);font-style:normal}
.nav-links{display:flex;gap:1.7rem;align-items:center}
.nav-links a{font-family:var(--font-head);font-weight:500;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-2);position:relative;transition:color var(--tr)}
.nav-links a::after{content:'';position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--red);transition:width .3s ease}
.nav-links a:hover,.nav-links a.active{color:var(--red)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-hamburger{display:none;flex-direction:column;gap:5px;padding:6px;cursor:pointer}
.nav-hamburger span{display:block;width:26px;height:2px;background:var(--ink);border-radius:2px;transition:var(--tr)}
#mobile-menu{display:none;position:fixed;inset:0;top:0;z-index:200;background:var(--white);padding:1.4rem;flex-direction:column;gap:.3rem}
#mobile-menu.open{display:flex}
.mm-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;padding-bottom:1rem;border-bottom:1px solid var(--line)}
.mm-close{font-size:1.8rem;line-height:1;color:var(--ink);background:none;border:none}
#mobile-menu a{font-family:var(--font-head);font-weight:500;font-size:1.2rem;letter-spacing:.05em;text-transform:uppercase;color:var(--ink);padding:.9rem .3rem;border-bottom:1px solid var(--line)}
#mobile-menu a:hover{color:var(--red)}
#mobile-menu .btn{margin-top:1.2rem}

/* ===== HERO ===== */
.hero{position:relative;overflow:hidden;background:linear-gradient(180deg,var(--paper) 0%,var(--white) 100%);border-bottom:1px solid var(--line)}
.hero-in{max-width:var(--max);margin:0 auto;padding:5rem 2rem 4rem;display:grid;grid-template-columns:1.05fr .95fr;gap:3.5rem;align-items:center}
.hero-badges{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1.6rem}
.badge{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--font-head);font-weight:500;font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;padding:.4rem 1rem;border-radius:100px}
.badge-red{background:var(--red-tint);color:var(--red-dark);border:1px solid rgba(204,0,0,.18)}
.badge-line{background:var(--white);color:var(--muted);border:1px solid var(--line-2)}
.hero-title{font-size:clamp(2.4rem,5vw,4rem);line-height:1.02;color:var(--ink);margin-bottom:1.3rem}
.hero-sub{font-size:clamp(1rem,1.5vw,1.14rem);color:var(--muted);max-width:520px;margin-bottom:2rem;font-weight:400}
.hero-ctas{display:flex;gap:.9rem;flex-wrap:wrap;margin-bottom:2.4rem}
.hero-usps{display:flex;gap:1.6rem;flex-wrap:wrap}
.hero-usp{display:flex;align-items:center;gap:.55rem;font-size:.86rem;color:var(--ink-2);font-weight:500}
.hero-usp svg{width:20px;height:20px;color:var(--red);flex-shrink:0}
.hero-visual{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/3;background:var(--paper-2)}
.hero-visual img{width:100%;height:100%;object-fit:cover}
.hero-visual-tag{position:absolute;left:1.1rem;bottom:1.1rem;right:1.1rem;background:rgba(20,22,28,.82);backdrop-filter:blur(6px);color:#fff;border-radius:var(--radius-md);padding:.9rem 1.1rem;display:flex;align-items:center;gap:.8rem}
.hero-visual-tag strong{font-family:var(--font-head);font-weight:600;font-size:1rem;letter-spacing:.03em;display:block}
.hero-visual-tag span{font-size:.78rem;color:#c9ced8}
.hero-visual-tag .dot{width:42px;height:42px;border-radius:50%;background:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hero-visual-tag .dot svg{width:22px;height:22px;color:#fff}

/* ===== SECTIONS ===== */
.section{padding:5.5rem 0}
.section.paper{background:var(--paper)}
.section.dark{background:var(--steel);color:#c9ced8}
.section.dark .section-title{color:#fff}
.section.dark .section-desc{color:#aeb6c2}
.section-head{text-align:center;max-width:640px;margin:0 auto 3rem}
.section-head.left{text-align:left;margin-left:0}
.tag{display:inline-block;font-family:var(--font-head);font-weight:500;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--red);margin-bottom:.7rem;padding-left:2rem;position:relative}
.tag::before{content:'';position:absolute;left:0;top:50%;width:1.3rem;height:2px;background:var(--red);transform:translateY(-50%)}
.tag.center{padding-left:0}
.tag.center::before{display:none}
.section-title{font-size:clamp(1.7rem,3.6vw,2.5rem);color:var(--ink);margin-bottom:.7rem}
.section-desc{font-size:.98rem;color:var(--muted);line-height:1.7}

/* ===== PILLARS ===== */
.pillars{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}
.pillar{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:2.2rem 1.6rem;text-align:center;transition:all var(--tr);position:relative;overflow:hidden}
.pillar::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:54px;height:3px;background:var(--red);opacity:0;transition:opacity var(--tr)}
.pillar:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--line-2)}
.pillar:hover::before{opacity:1}
.pillar-ic{width:58px;height:58px;border-radius:14px;background:var(--red-tint);display:flex;align-items:center;justify-content:center;margin:0 auto 1.1rem;color:var(--red)}
.pillar-ic svg{width:26px;height:26px}
.pillar h3{font-size:1rem;letter-spacing:.03em;margin-bottom:.5rem;color:var(--ink)}
.pillar p{font-size:.86rem;color:var(--muted);line-height:1.6}

/* ===== STEPS ===== */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;position:relative}
.step{text-align:center;position:relative;padding:0 .8rem}
.step-num{width:52px;height:52px;border-radius:50%;background:var(--red);color:#fff;font-family:var(--font-head);font-weight:600;font-size:1.2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem;box-shadow:0 0 0 6px var(--white),0 0 0 8px var(--red-tint)}
.step h3{font-size:.95rem;margin-bottom:.5rem;color:var(--ink)}
.step p{font-size:.85rem;color:var(--muted);line-height:1.6}

/* ===== CAR CARDS ===== */
.cars-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.car{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--tr);display:flex;flex-direction:column}
.car:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--line-2)}
.car-media{position:relative;aspect-ratio:16/10;background:var(--paper-2);overflow:hidden}
.car-media img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.car:hover .car-media img{transform:scale(1.05)}
.car-badge{position:absolute;top:.75rem;left:.75rem;background:var(--red);color:#fff;font-family:var(--font-head);font-weight:500;font-size:.66rem;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .8rem;border-radius:5px;z-index:2}
.car-badge.reserved{background:#c78a00}
.car-badge.sold{background:#555}
.car-fav{position:absolute;top:.7rem;right:.7rem}
.car-body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1}
.car-title{font-size:1.12rem;letter-spacing:.02em;color:var(--ink);margin-bottom:.15rem}
.car-variant{font-size:.82rem;color:var(--muted-2);margin-bottom:.9rem;min-height:1.1em}
.car-specs{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.1rem}
.spec{display:inline-flex;align-items:center;gap:.35rem;font-size:.76rem;color:var(--ink-2);background:var(--paper);border:1px solid var(--line);padding:.28rem .6rem;border-radius:6px;font-weight:500}
.spec svg{width:14px;height:14px;color:var(--red);opacity:.85}
.car-foot{margin-top:auto}
.car-price-row{display:flex;align-items:baseline;justify-content:space-between;gap:.5rem;margin-bottom:1rem}
.car-price{font-family:var(--font-head);font-weight:600;font-size:1.55rem;color:var(--ink)}
.car-price small{font-size:.5em;color:var(--muted);font-weight:400;margin-left:.15em}
.car-old{font-size:.85rem;color:var(--muted-2);text-decoration:line-through}
.car-fin{font-size:.76rem;color:var(--red-dark);font-weight:600}
.car-actions{display:grid;grid-template-columns:1fr auto;gap:.55rem}

/* ===== FILTERS ===== */
.catalog-wrap{display:grid;grid-template-columns:270px 1fr;gap:2rem;align-items:start}
.filters{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.4rem;position:sticky;top:88px}
.filters h3{font-size:.9rem;letter-spacing:.06em;margin-bottom:1rem;color:var(--ink);display:flex;align-items:center;justify-content:space-between}
.filters h3 button{font-family:var(--font-body);font-size:.72rem;text-transform:none;letter-spacing:0;color:var(--red);font-weight:600}
.filter-group{margin-bottom:1.15rem}
.filter-group label{display:block;font-family:var(--font-head);font-weight:500;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:.45rem}
.filter-group select,.filter-group input{width:100%;padding:.62rem .7rem;background:var(--white);border:1px solid var(--line-2);border-radius:var(--radius);color:var(--ink);font-family:var(--font-body);font-size:.88rem;outline:none;transition:border-color var(--tr)}
.filter-group select:focus,.filter-group input:focus{border-color:var(--red)}
.filter-row{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}
.catalog-main{min-height:50vh}
.catalog-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1.3rem;flex-wrap:wrap}
.catalog-count{font-size:.9rem;color:var(--muted)}
.catalog-count strong{color:var(--ink);font-family:var(--font-head);font-weight:600}
.catalog-sort{display:flex;align-items:center;gap:.5rem}
.catalog-sort select{padding:.5rem .7rem;border:1px solid var(--line-2);border-radius:var(--radius);font-family:var(--font-body);font-size:.85rem;color:var(--ink);background:var(--white)}
.filters-toggle{display:none}
.state{text-align:center;padding:4rem 1rem;color:var(--muted)}
.state svg{width:56px;height:56px;color:var(--line-2);margin:0 auto 1rem}
.skeleton{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden}
.skeleton .sk-media{aspect-ratio:16/10;background:linear-gradient(90deg,#eef0f4 25%,#e2e5ea 50%,#eef0f4 75%);background-size:200% 100%;animation:sk 1.4s infinite}
.skeleton .sk-body{padding:1.3rem}
.skeleton .sk-line{height:12px;border-radius:6px;background:linear-gradient(90deg,#eef0f4 25%,#e2e5ea 50%,#eef0f4 75%);background-size:200% 100%;animation:sk 1.4s infinite;margin-bottom:.7rem}
@keyframes sk{from{background-position:200% 0}to{background-position:-200% 0}}

/* ===== CAR DETAIL ===== */
.detail{padding:2.5rem 0 5rem}
.breadcrumb{font-size:.82rem;color:var(--muted);margin-bottom:1.5rem}
.breadcrumb a:hover{color:var(--red)}
.detail-grid{display:grid;grid-template-columns:1.3fr .9fr;gap:2.5rem;align-items:start}
.gallery-main{border-radius:var(--radius-lg);overflow:hidden;background:var(--paper-2);aspect-ratio:16/10;box-shadow:var(--shadow)}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:flex;gap:.6rem;margin-top:.7rem;flex-wrap:wrap}
.gallery-thumbs img{width:88px;height:64px;object-fit:cover;border-radius:8px;border:2px solid transparent;cursor:pointer;transition:border-color var(--tr)}
.gallery-thumbs img.active{border-color:var(--red)}
.detail-side{position:sticky;top:88px}
.detail-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.8rem;box-shadow:var(--shadow-sm)}
.detail-brand{font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--red);font-family:var(--font-head);font-weight:500}
.detail-title{font-size:1.7rem;color:var(--ink);margin:.2rem 0 .1rem}
.detail-variant{font-size:.95rem;color:var(--muted);margin-bottom:1.1rem}
.detail-price{font-family:var(--font-head);font-weight:600;font-size:2.2rem;color:var(--ink);line-height:1}
.detail-price small{font-size:.42em;color:var(--muted);font-weight:400}
.detail-old{font-size:1rem;color:var(--muted-2);text-decoration:line-through;margin-left:.5rem}
.detail-fin{background:var(--red-tint);border:1px solid rgba(204,0,0,.15);border-radius:var(--radius-md);padding:.8rem 1rem;margin:1rem 0 1.3rem;font-size:.85rem;color:var(--red-dark)}
.detail-fin strong{font-family:var(--font-head);font-weight:600;font-size:1.05rem}
.detail-actions{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.2rem}
.detail-meta{border-top:1px solid var(--line);padding-top:1rem;font-size:.82rem;color:var(--muted)}
.specs-table{display:grid;grid-template-columns:1fr 1fr;gap:.1rem;background:var(--line);border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;margin-top:1.5rem}
.specs-table div{background:var(--white);padding:.8rem 1rem;font-size:.85rem;display:flex;justify-content:space-between;gap:1rem}
.specs-table div span:first-child{color:var(--muted)}
.specs-table div span:last-child{color:var(--ink);font-weight:600}
.detail-block{margin-top:2.2rem}
.detail-block h2{font-size:1.2rem;margin-bottom:.9rem;color:var(--ink)}
.detail-block p{color:var(--ink-2);line-height:1.8}
.highlights{display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem;margin-top:.5rem}
.highlights li{display:flex;align-items:center;gap:.55rem;font-size:.9rem;color:var(--ink-2)}
.highlights li svg{width:18px;height:18px;color:var(--red);flex-shrink:0}

/* ===== VENDER / VALUE BLOCKS ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center}
.checklist{display:flex;flex-direction:column;gap:.9rem;margin:1.5rem 0}
.checklist li{display:flex;gap:.8rem;align-items:flex-start;font-size:.95rem;color:var(--ink-2)}
.checklist li svg{width:22px;height:22px;color:var(--red);flex-shrink:0;margin-top:2px}
.checklist strong{color:var(--ink)}
.free-tag{display:inline-flex;align-items:center;gap:.5rem;background:var(--red);color:#fff;font-family:var(--font-head);font-weight:600;font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;padding:.5rem 1.2rem;border-radius:100px;margin-bottom:1.2rem}
.visual-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:2.5rem;box-shadow:var(--shadow);text-align:center}
.visual-card .big-ic{width:76px;height:76px;border-radius:50%;background:var(--red-tint);display:flex;align-items:center;justify-content:center;margin:0 auto 1.3rem;color:var(--red)}
.visual-card .big-ic svg{width:34px;height:34px}

/* ===== SIMULADOR ===== */
.sim{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:2.2rem;box-shadow:var(--shadow)}
.sim h3{font-size:1.3rem;margin-bottom:.3rem;color:var(--ink)}
.sim .sim-sub{font-size:.86rem;color:var(--muted);margin-bottom:1.6rem}
.sim-field{margin-bottom:1.3rem}
.sim-field label{display:flex;justify-content:space-between;font-family:var(--font-head);font-weight:500;font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:.5rem}
.sim-field label b{color:var(--red);font-family:var(--font-body);font-size:.95rem}
.sim-field input[type=range]{width:100%;accent-color:var(--red)}
.sim-field input[type=number]{width:100%;padding:.7rem .8rem;border:1px solid var(--line-2);border-radius:var(--radius);font-family:var(--font-body);font-size:1rem;color:var(--ink)}
.sim-result{background:var(--steel);color:#fff;border-radius:var(--radius-md);padding:1.6rem;text-align:center;margin-top:1.5rem}
.sim-result .cuota{font-family:var(--font-head);font-weight:600;font-size:3rem;line-height:1;color:#fff}
.sim-result .cuota span{font-size:.35em;color:var(--red-light)}
.sim-result .cuota-label{font-size:.8rem;color:#aeb6c2;margin-top:.4rem;letter-spacing:.05em;text-transform:uppercase}
.sim-detail{display:flex;justify-content:space-around;margin-top:1.2rem;padding-top:1.2rem;border-top:1px solid rgba(255,255,255,.12);font-size:.8rem;color:#aeb6c2}
.sim-detail b{display:block;color:#fff;font-family:var(--font-head);font-weight:600;font-size:1.05rem}
.sim-note{font-size:.72rem;color:var(--muted-2);margin-top:1rem;text-align:center}

/* ===== FAQ ===== */
.faq{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.7rem}
.faq-item{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden}
.faq-q{padding:1.1rem 1.4rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;cursor:pointer}
.faq-q h3{font-family:var(--font-head);font-weight:500;font-size:.95rem;text-transform:none;letter-spacing:.01em;color:var(--ink)}
.faq-q svg{width:20px;height:20px;color:var(--red);flex-shrink:0;transition:transform .3s ease}
.faq-item.open .faq-q svg{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.open .faq-a{max-height:320px}
.faq-a p{padding:0 1.4rem 1.2rem;color:var(--muted);font-size:.9rem;line-height:1.7}

/* ===== CTA BAND ===== */
.ctaband{background:var(--steel);color:#fff;padding:4.5rem 0;position:relative;overflow:hidden}
.ctaband::before{content:'';position:absolute;top:-40%;right:-10%;width:500px;height:500px;background:radial-gradient(circle,var(--red-glow),transparent 70%);filter:blur(40px)}
.ctaband-in{max-width:760px;margin:0 auto;text-align:center;position:relative;z-index:1}
.ctaband h2{font-size:clamp(1.8rem,4vw,2.7rem);color:#fff;margin-bottom:1rem}
.ctaband p{color:#aeb6c2;font-size:1.02rem;margin-bottom:2rem}
.ctaband .btns{display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:3rem;align-items:start}
.contact-cards{display:flex;flex-direction:column;gap:1rem}
.contact-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:1.3rem 1.5rem;display:flex;gap:1rem;align-items:center;transition:all var(--tr)}
.contact-card:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm)}
.contact-card .ic{width:46px;height:46px;border-radius:50%;background:var(--red-tint);display:flex;align-items:center;justify-content:center;color:var(--red);flex-shrink:0}
.contact-card .ic svg{width:20px;height:20px}
.contact-card h4{font-family:var(--font-head);font-weight:500;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:.15rem}
.contact-card a,.contact-card p{color:var(--ink);font-weight:600;font-size:.95rem}
.contact-card a:hover{color:var(--red)}
.form-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:2.2rem;box-shadow:var(--shadow-sm)}
.form-card h2{font-size:1.35rem;margin-bottom:.4rem;color:var(--ink)}
.form-card .fsub{font-size:.88rem;color:var(--muted);margin-bottom:1.6rem}
.fg{margin-bottom:1.1rem}
.fg label{display:block;font-family:var(--font-head);font-weight:500;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem}
.fg input,.fg textarea,.fg select{width:100%;padding:.8rem 1rem;background:var(--white);border:1px solid var(--line-2);border-radius:var(--radius);color:var(--ink);font-family:var(--font-body);font-size:.95rem;outline:none;transition:border-color var(--tr)}
.fg input:focus,.fg textarea:focus,.fg select:focus{border-color:var(--red)}
.fg textarea{min-height:110px;resize:vertical}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-ok{text-align:center;padding:2.5rem 1rem;color:var(--ink)}
.form-ok svg{width:56px;height:56px;color:var(--wa);margin:0 auto 1rem}
.form-ok h3{font-size:1.3rem;margin-bottom:.5rem}

/* ===== FOOTER ===== */
footer{background:var(--steel);color:#aeb6c2;padding:3.5rem 0 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:2.5rem;padding-bottom:2.5rem}
.footer-brand img{height:48px;margin-bottom:1rem}
.footer-brand .flogo-text{font-family:var(--font-head);font-weight:600;font-size:1.15rem;color:#fff;letter-spacing:.06em;margin-bottom:1rem;display:none}
.footer-brand p{font-size:.86rem;color:#8b93a2;line-height:1.6;max-width:290px}
.footer-social{display:flex;gap:.7rem;margin-top:1.1rem}
.footer-social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:#c9ced8;transition:all var(--tr)}
.footer-social a:hover{background:var(--red);color:#fff}
.footer-social svg{width:16px;height:16px}
.footer-col h4{font-family:var(--font-head);font-weight:500;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:#fff;margin-bottom:1.1rem;position:relative;padding-bottom:.5rem}
.footer-col h4::after{content:'';position:absolute;bottom:0;left:0;width:24px;height:2px;background:var(--red)}
.footer-col ul{display:flex;flex-direction:column;gap:.55rem}
.footer-col a,.footer-col span{font-size:.86rem;color:#8b93a2;transition:color var(--tr)}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:1.2rem 0;text-align:center}
.footer-bottom p{font-size:.76rem;color:#6f7889}
.footer-bottom a{color:#8b93a2}
.footer-bottom a:hover{color:#fff}

/* ===== WHATSAPP FLOAT ===== */
#wa-float{position:fixed;right:1.4rem;bottom:1.4rem;z-index:90;width:56px;height:56px;border-radius:50%;background:var(--wa);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 22px rgba(37,211,102,.4);transition:transform var(--tr)}
#wa-float:hover{transform:scale(1.08)}
#wa-float svg{width:30px;height:30px;fill:#fff}

/* ===== REVEAL ===== */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .6s ease,transform .6s ease}
.reveal.vis{opacity:1;transform:translateY(0)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero-in{grid-template-columns:1fr;gap:2.5rem}
  .hero-visual{order:-1}
  .pillars{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr);gap:2rem}
  .cars-grid{grid-template-columns:repeat(2,1fr)}
  .catalog-wrap{grid-template-columns:1fr}
  .filters{position:relative;top:0;display:none}
  .filters.open{display:block}
  .filters-toggle{display:inline-flex}
  .detail-grid,.split,.contact-grid{grid-template-columns:1fr;gap:2rem}
  .detail-side{position:relative;top:0}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .topbar-in{display:none}
  .ticker-wrap{display:block}
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .section{padding:3.5rem 0}
  .container,.nav-in,.hero-in{padding-left:1.3rem;padding-right:1.3rem}
  .pillars{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr;gap:1.4rem}
  .cars-grid{grid-template-columns:1fr}
  .highlights,.specs-table{grid-template-columns:1fr}
  .frow{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:1.8rem}
  .hero-ctas .btn{flex:1;justify-content:center}
}
