:root {
      --bg: #080808;
      --surface: #111111;
      --surface-2: #171717;
      --text: #f5f2eb;
      --muted: #aaa49a;
      --gold: #c89c48;
      --gold-light: #f2d790;
      --border: rgba(255,255,255,.10);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }
    body.intro-active { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

    /* INTRO CINEMATOGRÁFICA */
    .intro {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 45%, rgba(200,156,72,.13), transparent 28%),
        linear-gradient(#050505, #090909);
      perspective: 1000px;
      transition: opacity .65s ease, visibility .65s ease;
    }
    .intro::before {
      content: "";
      position: absolute;
      inset: -30%;
      background: repeating-radial-gradient(circle at center, transparent 0 72px, rgba(255,255,255,.025) 73px 74px);
      transform: rotateX(72deg) translateY(24%);
      opacity: .45;
    }
    .intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .intro-logo-wrap {
      position: relative;
      width: clamp(170px, 30vw, 360px);
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      transform-style: preserve-3d;
      animation: logoApproach 3.05s cubic-bezier(.12,.76,.15,1) forwards;
    }
    .intro-logo-wrap::after {
      content: "";
      position: absolute;
      width: 70%;
      height: 16%;
      bottom: 4%;
      border-radius: 50%;
      background: rgba(200,156,72,.30);
      filter: blur(30px);
      animation: shadowApproach 3s ease forwards;
    }
    .demo-logo {
      position: relative;
      width: 68%;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 28%;
      color: #0a0a0a;
      font-size: clamp(48px, 9vw, 110px);
      font-weight: 900;
      letter-spacing: -.09em;
      padding-right: .08em;
      background:
        linear-gradient(120deg, #5b3b08 0%, #f7dfa0 18%, #9a6a19 38%, #fff0b9 52%, #a4701c 68%, #e6c36f 84%, #62410e 100%);
      border: 1px solid rgba(255,255,255,.55);
      box-shadow:
        0 0 0 10px rgba(255,255,255,.035),
        0 22px 70px rgba(0,0,0,.75),
        inset 8px 8px 20px rgba(255,255,255,.30),
        inset -14px -16px 25px rgba(67,40,0,.55);
      transform: rotateY(-18deg) rotateX(8deg);
      overflow: hidden;
    }
    .demo-logo::before {
      content: "";
      position: absolute;
      inset: -30%;
      background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.9) 48%, transparent 58%);
      transform: translateX(-120%) rotate(10deg);
      animation: logoShine 1.1s ease 1.3s forwards;
    }
    .demo-logo small {
      position: absolute;
      bottom: 14%;
      font-size: clamp(8px, 1.4vw, 14px);
      letter-spacing: .38em;
      font-weight: 800;
    }
    .intro-caption {
      position: absolute;
      top: calc(50% + min(31vw, 200px));
      color: rgba(255,255,255,.68);
      font-size: 11px;
      letter-spacing: .36em;
      text-transform: uppercase;
      animation: captionFade 2.7s ease forwards;
    }
    .skip-intro {
      position: absolute;
      right: 24px;
      bottom: 22px;
      border: 0;
      background: transparent;
      color: rgba(255,255,255,.60);
      cursor: pointer;
      padding: 10px;
      font-size: 12px;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    @keyframes logoApproach {
      0% { transform: translateZ(-860px) scale(.18) rotateZ(-3deg); opacity: 0; filter: blur(10px); }
      18% { opacity: 1; }
      72% { transform: translateZ(0) scale(1) rotateZ(0); filter: blur(0); opacity: 1; }
      87% { transform: translateZ(250px) scale(1.12); filter: blur(1px); }
      100% { transform: translateZ(950px) scale(2.4); opacity: 0; filter: blur(18px); }
    }
    @keyframes logoShine { to { transform: translateX(135%) rotate(10deg); } }
    @keyframes shadowApproach { from { opacity: 0; transform: scale(.3); } 70% { opacity: 1; } to { opacity: 0; transform: scale(2); } }
    @keyframes captionFade { 0%,15% {opacity:0} 35%,70% {opacity:1} 100% {opacity:0} }

    /* HEADER */
    .site-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition: background .3s, border-color .3s, backdrop-filter .3s;
    }
    .site-header.scrolled { background: rgba(8,8,8,.78); border-color: var(--border); backdrop-filter: blur(18px); }
    .nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: .08em; }
    .brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(242,215,144,.5); border-radius: 12px; color: var(--gold-light); }
    .brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .12em; font-weight: 600; }
    nav { display: flex; align-items: center; gap: 28px; }
    nav a { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; }
    nav a:hover { color: var(--gold-light); }
    .nav-cta { padding: 11px 17px; border: 1px solid rgba(242,215,144,.45); border-radius: 999px; }
    .menu { display: none; border: 0; background: none; color: white; font-size: 24px; }

    /* HERO */
    .hero {
      min-height: 100svh;
      position: relative;
      display: grid;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 76% 40%, rgba(200,156,72,.16), transparent 24%),
        radial-gradient(circle at 15% 80%, rgba(255,255,255,.055), transparent 25%),
        linear-gradient(135deg,#080808 0%,#0e0e0e 55%,#080808 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 880px;
      height: 450px;
      right: -100px;
      top: 27%;
      border-radius: 50%;
      border: 1px solid rgba(242,215,144,.19);
      transform: rotate(-11deg);
      box-shadow: 0 0 90px rgba(200,156,72,.06), inset 0 0 90px rgba(200,156,72,.04);
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 600px;
      height: 170px;
      right: 30px;
      top: 45%;
      border-top: 2px solid rgba(242,215,144,.48);
      border-radius: 50%;
      transform: rotate(-7deg) skewX(-18deg);
      filter: drop-shadow(0 0 14px rgba(242,215,144,.22));
    }
    .hero-content { position: relative; z-index: 2; padding-top: 100px; }
    .eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
    h1 { max-width: 820px; margin: 0; font-size: clamp(52px, 8vw, 112px); line-height: .91; letter-spacing: -.065em; }
    h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(242,215,144,.75); }
    .hero-copy { max-width: 590px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.6; margin: 28px 0 34px; }
    .actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; background: var(--gold-light); color: #111; font-weight: 800; font-size: 13px; border: 1px solid var(--gold-light); transition: transform .2s, background .2s; }
    .btn:hover { transform: translateY(-2px); }
    .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.25); }
    .hero-note { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 2; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }

    /* GERAL */
    .section { padding: 118px 0; border-top: 1px solid var(--border); }
    .section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end; margin-bottom: 54px; }
    h2 { margin: 0; font-size: clamp(36px, 5vw, 65px); line-height: 1; letter-spacing: -.045em; }
    .section-head > p { color: var(--muted); line-height: 1.7; margin: 0; }

    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .feature { min-height: 300px; padding: 30px; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); position: relative; overflow: hidden; transition: transform .35s, border-color .35s; }
    .feature:hover { transform: translateY(-7px); border-color: rgba(242,215,144,.4); }
    .feature-number { color: var(--gold); font-size: 12px; letter-spacing: .2em; }
    .feature h3 { margin: 105px 0 12px; font-size: 27px; }
    .feature p { margin: 0; color: var(--muted); line-height: 1.65; }
    .feature::after { content: ""; position: absolute; width: 150px; height: 150px; border: 1px solid rgba(242,215,144,.15); border-radius: 50%; top: -55px; right: -45px; }

    .categories { background: #0d0d0d; }
    .category-list { border-top: 1px solid var(--border); }
    .category-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; min-height: 112px; border-bottom: 1px solid var(--border); transition: padding .25s, background .25s; }
    .category-row:hover { padding-inline: 18px; background: rgba(255,255,255,.025); }
    .category-row span { color: var(--gold); font-size: 12px; }
    .category-row strong { font-size: clamp(21px,3vw,37px); letter-spacing: -.035em; }
    .category-row em { color: var(--muted); font-style: normal; }

    .advisor { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
    .advisor-copy, .advisor-box { border: 1px solid var(--border); border-radius: 26px; padding: clamp(28px,5vw,55px); }
    .advisor-copy { background: linear-gradient(140deg, rgba(200,156,72,.13), rgba(255,255,255,.015)); }
    .advisor-copy p { color: var(--muted); line-height: 1.75; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    label { display: grid; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
    select { width: 100%; padding: 15px; border: 1px solid var(--border); border-radius: 13px; background: #101010; color: white; outline: none; }
    .result { margin-top: 18px; padding: 18px; border-radius: 14px; background: rgba(200,156,72,.11); color: var(--gold-light); min-height: 60px; line-height: 1.5; }

    .numbers { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .number { padding: 34px 22px; border-left: 1px solid var(--border); }
    .number strong { display: block; font-size: clamp(38px,5vw,68px); color: var(--gold-light); }
    .number span { color: var(--muted); }

    .brand-strip { overflow: hidden; border-block: 1px solid var(--border); padding: 24px 0; }
    .brand-track { display: flex; width: max-content; gap: 70px; animation: marquee 22s linear infinite; color: rgba(255,255,255,.62); font-size: 18px; font-weight: 800; letter-spacing: .12em; }
    @keyframes marquee { to { transform: translateX(-50%); } }

    .location { background: linear-gradient(130deg,#111,#0a0a0a); }
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .map-placeholder { min-height: 390px; border-radius: 28px; border: 1px solid var(--border); position: relative; overflow: hidden; background: repeating-linear-gradient(30deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px), repeating-linear-gradient(120deg, rgba(255,255,255,.02) 0 1px, transparent 1px 34px); }
    .map-placeholder::before { content: ""; position: absolute; left: 53%; top: 42%; width: 25px; height: 25px; background: var(--gold-light); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 10px rgba(242,215,144,.11); }
    .map-placeholder::after { content: "AUTO SHEIK"; position: absolute; left: calc(53% - 42px); top: calc(42% + 48px); font-size: 11px; letter-spacing: .15em; color: var(--gold-light); }
    .location p { color: var(--muted); line-height: 1.7; }

    footer { padding: 36px 0; border-top: 1px solid var(--border); color: var(--muted); }
    .footer-row { display: flex; justify-content: space-between; gap: 20px; }
    .floating { position: fixed; z-index: 90; right: 20px; bottom: 20px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-light); color: #111; font-size: 12px; font-weight: 900; box-shadow: 0 12px 35px rgba(0,0,0,.4); }

    .reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 820px) {
      nav { display: none; position: absolute; top: 72px; left: 20px; right: 20px; padding: 20px; background: #111; border: 1px solid var(--border); border-radius: 18px; flex-direction: column; align-items: stretch; }
      nav.open { display: flex; }
      .menu { display: block; }
      .section-head, .advisor, .location-grid { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .numbers { grid-template-columns: 1fr 1fr; }
      .hero::before { right: -500px; opacity: .55; }
      .hero::after { right: -220px; opacity: .6; }
    }
    @media (max-width: 520px) {
      .container { width: min(calc(100% - 26px), var(--max)); }
      .section { padding: 82px 0; }
      .form-grid, .numbers { grid-template-columns: 1fr; }
      .category-row { grid-template-columns: 42px 1fr; }
      .category-row em { display: none; }
      .footer-row { flex-direction: column; }
      .intro-caption { top: 72%; text-align: center; width: 100%; }
    }
    @media (prefers-reduced-motion: reduce) {
      *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
      .intro { display: none; }
      body.intro-active { overflow: auto; }
    }

.recommend-button { margin-top: 18px; }
