:root {
  /* Sav publicidad — índigo / lavanda / cian */
  --ink: #1e1a2e;
  --ink-soft: #3a3450;
  --muted: #6b6580;
  --paper: #f4f1f8;
  --mist: #eef6f8;
  --cream: #f7f5fb;
  --white: #ffffff;
  --line: rgba(61, 49, 133, 0.1);
  --primary: #3d3185;
  --primary-dark: #2f2668;
  --lavender: #a16ca7;
  --lavender-soft: #c9a3cc;
  --cyan: #7dbfce;
  --cyan-deep: #4fa0b4;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(61, 49, 133, 0.1);
  --shadow-sm: 0 6px 18px rgba(61, 49, 133, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1120px;
  --header-h: 80px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.01em; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 38rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn img {
  width: 18px;
  height: 18px;
  max-width: 18px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(61, 49, 133, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-wa {
  background: var(--whatsapp);
  color: #083b1a;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { filter: brightness(0.97); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(61, 49, 133, 0.28);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-sm { padding: 9px 14px; font-size: 0.8rem; }

.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary) 55%, #5a3d8f);
  color: #e8e4f4;
  font-size: 0.8rem;
  line-height: 1.2;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e8e4f4;
  white-space: nowrap;
}
.topbar-links a img {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.topbar-links a:hover { color: #fff; }
.topbar-note { opacity: 0.85; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  min-width: 0;
}
.brand-logo,
.brand img {
  width: auto;
  height: 58px;
  max-width: 124px;
  padding: 5px 9px;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.site-footer .brand-logo,
.site-footer .brand img {
  height: 52px;
  max-width: 112px;
  background: #fff;
}
.brand > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  color: var(--ink);
}
.brand small {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.7rem;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 550;
  font-size: 0.92rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transition: transform .2s;
}
.nav a:hover::after { transform: scaleX(1); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  transition: background .2s, border-color .2s;
}
.icon-btn img { width: 20px; height: 20px; display: block; }
.icon-btn:hover { border-color: var(--lavender-soft); background: #faf8ff; }
.icon-btn.wa-mobile {
  display: none;
  background: var(--whatsapp);
  border-color: transparent;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  color: #fff;
  min-height: min(74vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(30, 26, 46, 0.94) 0%, rgba(61, 49, 133, 0.78) 42%, rgba(125, 191, 206, 0.35) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding: 64px 0 72px; }
.hero .eyebrow { color: var(--cyan); }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--cyan), var(--lavender-soft)); }
.hero h1 { max-width: 14ch; }
.hero .lead-hero {
  color: rgba(255,255,255,0.88);
  max-width: 34rem;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.hero-chips a {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.hero-chips a:hover {
  background: rgba(125, 191, 206, 0.25);
  border-color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

.cats { padding: 80px 0 48px; background: var(--cream); }
.section-head { margin-bottom: 32px; max-width: 40rem; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.cat-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}
.cat-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.cat-card:hover .media img { transform: scale(1.04); }
.cat-card .cap {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-card h3 { margin: 0 0 6px; color: var(--ink); }
.cat-card p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}
.cat-card .btn { align-self: flex-start; }

.why { padding: 72px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: linear-gradient(165deg, #faf8ff 0%, var(--mist) 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--line);
  transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-3px); }
.why-card .n {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--lavender));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.vehicles {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(125, 191, 206, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(161, 108, 167, 0.12), transparent 40%),
    var(--white);
}
.vehicles-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f4f7 0%, #f3eef8 100%);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.vehicles-media img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}
.vehicles-copy .lead { margin-bottom: 8px; }
.vehicles-cta { margin-top: 26px; }
.split ul { padding: 0; margin: 16px 0 0; list-style: none; }
.split li {
  padding: 9px 0 9px 28px;
  position: relative;
  color: var(--ink-soft);
}
.split li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lavender));
  position: absolute;
  left: 0;
  top: 15px;
}

.process {
  padding: 24px 0 80px;
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.process-step .n {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-deep);
  margin-bottom: 10px;
}

.styles { padding: 24px 0 80px; background: var(--white); }
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.style-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.style-card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}
.style-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.style-card:hover .media img { transform: scale(1.03); }
.style-card .txt {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.style-card .txt p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
}
.style-card .btn { align-self: flex-start; margin-top: auto; }
.styles-more {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.styles-more a {
  color: var(--primary);
  font-weight: 700;
  margin-left: 6px;
  border-bottom: 1px solid rgba(61, 49, 133, 0.25);
}
.styles-more a:hover { color: var(--lavender); }

.ship {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(125, 191, 206, 0.45), transparent 42%),
    radial-gradient(ellipse at 85% 80%, rgba(161, 108, 167, 0.4), transparent 45%),
    linear-gradient(135deg, #2f2668 0%, #3d3185 48%, #4fa0b4 130%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ship::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  right: -60px;
  top: -80px;
}
.ship .wrap { position: relative; z-index: 1; }
.ship h2 { font-size: clamp(1.75rem, 3.5vw, 2.55rem); }
.ship p { margin: 0 auto; max-width: 34rem; color: rgba(255,255,255,.88); }

.faq { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 36px 18px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--ink);
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--lavender);
  font-size: 1.35rem;
}
.faq-item.open button::after { content: "–"; color: var(--primary); }
.faq-item .ans {
  display: none;
  color: var(--muted);
  padding: 0 8px 18px 0;
}
.faq-item.open .ans { display: block; }

.contact { padding: 24px 0 96px; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.card {
  background: linear-gradient(180deg, #faf8ff, var(--cream));
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--ink-soft);
  font-family: var(--font-display);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(161, 108, 167, 0.18);
}
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.form-note.is-ok { color: #166534; font-weight: 600; }
.map {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 14px;
  margin-top: 14px;
}
.nap { color: var(--muted); }
.nap a { color: var(--primary); font-weight: 600; }
.nap a:hover { color: var(--lavender); }
.legal-name { font-size: 0.78rem; opacity: 0.75; }

.site-footer {
  background: linear-gradient(180deg, #241e3a, #1e1a2e);
  color: #c9c4d8;
  padding: 52px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.site-footer a:hover { color: var(--cyan); }
.legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #083b1a;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }

@media (max-width: 980px) {
  .cat-grid, .why-grid, .process-grid, .style-grid, .split, .contact-grid, .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .site-header { position: relative; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cream);
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    z-index: 50;
  }
  .header-actions .header-cta { display: none; }
  .icon-btn.wa-mobile { display: inline-flex; }
  .menu-toggle { display: grid; place-items: center; }
  .topbar-note { display: none; }
  .hero { min-height: 64vh; }
  .hero h1 { max-width: none; }
}
@media (max-width: 640px) {
  .cat-grid, .why-grid, .process-grid, .style-grid { grid-template-columns: 1fr; }
  .topbar-links a:first-child { display: none; }
  .brand small { display: none; }
  .brand-logo, .brand img { height: 46px; max-width: 100px; padding: 3px 6px; }
  .hero .wrap { padding: 44px 0 52px; }
  .cats, .why, .faq { padding-block: 56px; }
}
