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

/* ── Variables ─────────────────────────────────── */
:root {
  --gold:        #c9941c;
  --gold2:       #f0c46a;
  --gold3:       #7d4b0a;
  --gold-bright: #ffeea6;
  --dark:        #070604;
  --dark2:       #0d0b08;
  --line:        rgba(201,148,28,.52);
  --glass:       rgba(9,7,4,.84);
  --hf:          'Barlow Condensed', sans-serif;
  --bf:          'Barlow', sans-serif;
}

/* ── Keyframes ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: rotate(2.5deg) translateY(0);    }
  50%     { transform: rotate(2.5deg) translateY(-13px); }
}
@keyframes pulse-shield {
  0%,100% { box-shadow: 0 0 18px rgba(201,148,28,.28); }
  50%     { box-shadow: 0 0 38px rgba(201,148,28,.58); }
}
@keyframes gold-sheen {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Base ──────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #fff;
  font-family: var(--bf);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.97) 0%,
      rgba(0,0,0,.78) 30%,
      rgba(0,0,0,.46) 60%,
      rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, var(--dark) 96%),
    url("background.jpg") center 42% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 62% 30%, rgba(201,148,28,.16), transparent 32%),
    radial-gradient(ellipse at 84% 58%, rgba(201,148,28,.18), transparent 24%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 88px;
  left: 5.5vw;
  right: 5.5vw;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--line) 25%,
    var(--line) 75%,
    transparent 100%);
  pointer-events: none;
}

/* ── Navbar ────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 52px;
  background: rgba(5,3,1,.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(201,148,28,.14);
  transition: background .3s;
}

.navbar.scrolled {
  background: rgba(3,2,1,.97);
  border-bottom-color: rgba(201,148,28,.25);
}

/* ── Logo ──────────────────────────────────────── */
.logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 185px;
  line-height: 1;
}

.logo > span {
  font-family: var(--hf);
  font-weight: 900;
  font-style: italic;
  font-size: 33px;
  letter-spacing: 2px;
  text-shadow: 0 3px 18px #000;
}

.logo-car {
  display: block;
  width: 120px;
  height: auto;
  margin-top: 1px;
}

.logo small {
  font-family: var(--bf);
  color: var(--gold2);
  font-size: 9.5px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-top: 2px;
}

/* ── Nav Menu ──────────────────────────────────── */
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  font-family: var(--bf);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding-bottom: 6px;
  transition: color .2s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

.menu a:hover { color: var(--gold2); }
.menu a:hover::after { transform: scaleX(1); }

/* ── WhatsApp CTA ──────────────────────────────── */
.whatsapp-top {
  color: #fff;
  text-decoration: none;
  font-family: var(--bf);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 12px 18px;
  background: rgba(0,0,0,.28);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s;
}

.whatsapp-top:hover {
  background: rgba(201,148,28,.14);
  box-shadow: 0 0 20px rgba(201,148,28,.3);
  transform: translateY(-1px);
}

/* ── Hamburger ─────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  color: var(--gold2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  line-height: 0;
}

/* ── Hero Grid ─────────────────────────────────── */
.hero-grid {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 38% 36% 26%;
  align-items: center;
  padding: 30px 5.5vw 145px;
}

/* ── Hero Text ─────────────────────────────────── */
.hero-text { max-width: 570px; }

.pill {
  display: inline-block;
  font-family: var(--bf);
  color: var(--gold2);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.62);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 22px;
  animation: fadeUp .7s ease both;
}

h1 {
  font-family: var(--hf);
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 8px 32px rgba(0,0,0,.92);
  animation: fadeUp .7s .12s ease both;
}

h1 span {
  display: block;
  background: linear-gradient(180deg, #fff8cc 0%, var(--gold2) 42%, #8e5510 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-family: var(--bf);
  margin-top: 20px;
  max-width: 510px;
  color: rgba(255,255,255,.8);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.62;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
  animation: fadeUp .7s .22s ease both;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  animation: fadeUp .7s .32s ease both;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--bf);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  cursor: pointer;
  border: 0;
  transition: transform .18s, box-shadow .18s, filter .18s;
}

.btn.gold {
  color: #140b00;
  background: linear-gradient(135deg, #ffe8a0 0%, #d49620 48%, #a35f0f 100%);
  box-shadow: 0 10px 32px rgba(201,148,28,.36);
}

.btn.gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(201,148,28,.52);
  filter: brightness(1.07);
}

.btn.gold:active { transform: translateY(0); }

.btn.outline {
  color: var(--gold2);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.4);
}

.btn.outline:hover {
  background: rgba(201,148,28,.1);
  border-color: var(--gold2);
}

/* ── Trust Badges ──────────────────────────────── */
.trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 46px;
  animation: fadeUp .7s .42s ease both;
}

.trust div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 120px;
}

.trust-icon {
  grid-row: 1 / 3;
  color: var(--gold2);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust b {
  font-family: var(--bf);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}

.trust small {
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

/* ── Brand Stage ───────────────────────────────── */
.brand-stage {
  display: grid;
  place-items: center;
  text-align: center;
  animation: fadeIn 1s .28s ease both;
}

.main-brand {
  width: min(560px, 100%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.92));
}

.car-line {
  width: 80%;
  height: 58px;
  margin: 0 auto 4px;
  border-top:   6px solid var(--gold);
  border-left:  6px solid var(--gold);
  border-right: 6px solid var(--gold);
  border-radius: 55% 55% 0 0;
  transform: skewX(-18deg);
  opacity: .88;
}

.main-brand strong {
  display: block;
  font-family: var(--hf);
  font-size: clamp(44px, 5.1vw, 90px);
  line-height: .82;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -3px;
  background: linear-gradient(
    180deg,
    #ffffff  5%,
    #bdbdbd 30%,
    #282828 46%,
    #f4c045 52%,
    #8a4e0c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-brand span {
  display: block;
  font-family: var(--hf);
  font-weight: 900;
  color: var(--gold2);
  font-size: clamp(24px, 2.9vw, 50px);
  letter-spacing: 16px;
  margin-top: 7px;
}

.main-brand small {
  display: block;
  font-family: var(--hf);
  font-weight: 700;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.9vw, 32px);
  letter-spacing: 16px;
  margin-top: 5px;
}

.shield {
  margin-top: 26px;
  width: 82px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--gold2);
  border: 3px solid var(--gold);
  clip-path: polygon(50% 0, 94% 18%, 82% 78%, 50% 100%, 18% 78%, 6% 18%);
  background: rgba(0,0,0,.52);
  animation: pulse-shield 3.2s ease infinite;
}

.brand-stage > p {
  font-family: var(--bf);
  color: var(--gold2);
  margin-top: 15px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* ── Key Card ──────────────────────────────────── */
.key-card {
  display: grid;
  place-items: center;
  animation: fadeIn 1s .48s ease both;
}

.key-shape {
  width: 188px;
  height: 390px;
  border-radius: 46% 46% 38% 38% / 8% 8% 5% 5%;
  background:
    linear-gradient(155deg,
      #2a1506  0%,
      #ecca6e 11%,
      #0e0c09 22%,
      #060504 65%,
      #eaca75 87%,
      #2a1506 100%);
  border: 2px solid rgba(238,200,110,.72);
  box-shadow:
    0 0 55px rgba(201,148,28,.3),
    inset 0 0 32px rgba(0,0,0,.82);
  padding: 20px 17px;
  animation: float 4.2s ease-in-out infinite;
}

.key-screen {
  height: 100%;
  border-radius: 78px;
  background: linear-gradient(180deg, #1d1b16, #070604);
  border: 1px solid rgba(255,255,255,.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 10px 18px;
}

.lock-dot {
  width: 52px;
  height: 52px;
  border: 2.5px solid var(--gold2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold2);
  background: rgba(201,148,28,.08);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.key-time {
  font-family: var(--bf);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: 2px;
}

.key-label {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gold2);
  text-align: center;
  line-height: 1.2;
}

.mini-car {
  color: rgba(255,255,255,.65);
  flex-shrink: 0;
}

.key-btn-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: 2px;
}

.key-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--bf);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(201,148,28,.38);
  background: rgba(201,148,28,.07);
  color: rgba(255,255,255,.72);
  cursor: default;
  transition: background .18s, border-color .18s;
}

.key-btn:hover {
  background: rgba(201,148,28,.2);
  border-color: var(--gold);
  color: var(--gold2);
}

/* ── Cards Row ─────────────────────────────────── */
.cards-row {
  position: relative;
  z-index: 6;
  margin-top: -90px;
  padding: 0 5vw 36px;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 22px;
}

/* ── Panels ────────────────────────────────────── */
.panel {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 36px;
}

h2 {
  font-family: var(--hf);
  font-weight: 800;
  color: var(--gold2);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 21px;
  margin-bottom: 24px;
}

/* ── Services ──────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.services article {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(201,148,28,.2);
  border-radius: 10px;
  transition: background .22s;
}

.services article:last-child { border-right: 0; }
.services article:hover { background: rgba(201,148,28,.065); }

.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  margin-bottom: 13px;
  height: 48px;
}

.services h3 {
  font-family: var(--hf);
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .8px;
  margin-bottom: 9px;
}

.services p {
  font-family: var(--bf);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Form Panel ────────────────────────────────── */
.form-sub {
  font-family: var(--bf);
  text-align: center;
  color: rgba(255,255,255,.72);
  margin-top: -8px;
  margin-bottom: 22px;
  font-size: 14.5px;
}

form {
  display: grid;
  grid-template-columns: 1.38fr .92fr;
  grid-template-rows: repeat(3, 52px);
  gap: 10px 14px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,148,28,.6);
  background: rgba(0,0,0,.5);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--gold2);
  transition: border-color .2s, box-shadow .2s;
}

.input-wrap:focus-within {
  border-color: var(--gold2);
  box-shadow: 0 0 0 3px rgba(201,148,28,.13);
}

.input-wrap input {
  width: 100%;
  height: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--bf);
  font-size: 14px;
}

.input-wrap input::placeholder { color: rgba(255,255,255,.46); }

form button {
  grid-column: 2;
  grid-row: 1 / 4;
  min-height: unset;
  height: 100%;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--bf);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #140b00;
  background: linear-gradient(135deg, #ffe8a0 0%, #d49620 48%, #a35f0f 100%);
  box-shadow: 0 10px 32px rgba(201,148,28,.34);
  transition: transform .18s, box-shadow .18s, filter .18s;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(201,148,28,.5);
  filter: brightness(1.07);
}

form button:active { transform: translateY(0); }

.note {
  font-family: var(--bf);
  display: block;
  text-align: center;
  color: var(--gold2);
  margin-top: 12px;
  font-size: 12px;
  opacity: .78;
}

/* ── Benefits Row ──────────────────────────────── */
.benefits {
  padding: 24px 5vw 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.benefits div {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 16px;
  border: 1px solid rgba(201,148,28,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  transition: border-color .22s, background .22s, transform .22s;
}

.benefits div:hover {
  border-color: rgba(201,148,28,.5);
  background: rgba(201,148,28,.06);
  transform: translateY(-3px);
}

.ben-icon {
  grid-row: 1 / 3;
  color: var(--gold2);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefits b {
  font-family: var(--bf);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.benefits small {
  color: rgba(255,255,255,.58);
  font-size: 11.5px;
}

/* ── Gallery ───────────────────────────────────── */
.gallery {
  padding: 70px 5vw;
  text-align: center;
}

.gallery > p {
  font-family: var(--bf);
  color: rgba(255,255,255,.62);
  margin-bottom: 28px;
  margin-top: -10px;
  font-size: 15px;
}

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

.gallery-item {
  height: 178px;
  border: 1px solid rgba(201,148,28,.28);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,148,28,.1), rgba(255,255,255,.024));
  color: var(--gold2);
  transition: border-color .22s, transform .22s;
}

.gallery-item svg { opacity: .6; }
.gallery-item span {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-item:hover {
  border-color: var(--gold2);
  transform: scale(1.025);
}

/* ── Contact ───────────────────────────────────── */
.contact {
  text-align: center;
  padding: 74px 20px;
  background: radial-gradient(ellipse at center, rgba(201,148,28,.13), transparent 55%);
}

.contact h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 14px;
}

.contact p {
  font-family: var(--bf);
  color: rgba(255,255,255,.68);
  margin-bottom: 28px;
  font-size: 16px;
}

/* ── Footer ────────────────────────────────────── */
footer {
  font-family: var(--bf);
  text-align: center;
  padding: 26px;
  color: rgba(255,255,255,.38);
  font-size: 13px;
  border-top: 1px solid rgba(201,148,28,.16);
}

/* ── Responsive 1200px ─────────────────────────── */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 120px;
  }
  .brand-stage, .key-card { display: none; }
  .cards-row { grid-template-columns: 1fr; margin-top: -70px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive 900px ──────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: block; }
  .navbar {
    padding: 0 20px;
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
  }
  .menu {
    display: none;
    width: 100%;
    order: 5;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(201,148,28,.14);
    margin-top: 10px;
  }
  .menu.active { display: flex; }
  .whatsapp-top { padding: 10px 14px; font-size: 11px; }
  .services { grid-template-columns: 1fr; }
  .services article { border-right: 0; border-bottom: 1px solid rgba(201,148,28,.2); }
  .services article:last-child { border-bottom: 0; }
  form { grid-template-columns: 1fr; grid-template-rows: auto; }
  form button { grid-column: auto; grid-row: auto; height: 52px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Responsive 600px ──────────────────────────── */
@media (max-width: 600px) {
  .logo > span { font-size: 26px; }
  .logo small { font-size: 8px; }
  .hero { background-position: center top; }
  .hero-grid { padding: 36px 22px 102px; min-height: 78vh; align-items: end; }
  .subtitle { font-size: 16px; }
  .actions .btn { width: 100%; }
  .trust { gap: 14px; }
  .cards-row { padding: 0 18px 28px; margin-top: 0; }
  .panel { padding: 24px 20px; }
  .benefits { grid-template-columns: 1fr; padding: 20px 18px 54px; }
}
