/* ============================================================
   Tu Carro al Día PTY — Landing
   Paleta: navy + naranja (logo)
   ============================================================ */

:root {
  --bg:        #07112A;
  --bg-2:     #0D1F45;
  --surface:  #132851;
  --surface-2:#1A3163;
  --border:   #26396b;
  --text:     #eef2ff;
  --text-mut: #9aabd1;
  --primary:  #F37020;   /* naranja principal del logo */
  --primary-2:#D85913;
  --accent:   #FF9F4D;   /* naranja claro para destacados */
  --accent-2: #7BA7FF;   /* azul cielo, secundario */
  --accent-2-soft: rgba(123, 167, 255, .35);
  --danger:   #ef4444;
  --shadow-lg: 0 25px 60px -20px rgba(0, 0, 0, .6);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, .45);
  --radius:   18px;
  --radius-sm:12px;
  --maxw:     1200px;
  --header-h: 140px;

  --ff-display: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: .15em; }
p  { margin: 0 0 1em; }

::selection { background: var(--primary); color: #07112A; }

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}
.section-alt {
  position: relative;
  background: var(--bg-2);
}
.section-alt::before,
.section-alt::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,112,32,.4), rgba(123,167,255,.4), transparent);
  opacity: .55;
}
.section-alt::before { top: 0; }
.section-alt::after  { bottom: 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-sub {
  color: var(--text-mut);
  font-size: 1.05rem;
  margin: 0;
}
.section-foot {
  text-align: center;
  margin-top: 40px;
  color: var(--text-mut);
}
.section-foot a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.section-foot a:hover { border-color: var(--accent); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--accent);
  background: rgba(255, 159, 77, .08);
  border: 1px solid rgba(255, 159, 77, .2);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow.is-secondary {
  color: var(--accent-2);
  background: rgba(123, 167, 255, .08);
  border-color: rgba(123, 167, 255, .25);
}

.accent { color: var(--accent); }

/* -------- Botones -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #07112A;
  box-shadow: 0 12px 28px -10px rgba(243, 112, 32, .55);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(255, 159, 77, .55);
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 17, 42, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 17, 42, .92);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 28px;
  font-size: .96rem;
  font-weight: 500;
}
.nav a {
  position: relative;
  color: var(--text);
  padding: 6px 2px;
  transition: color .15s;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (min-width: 980px) {
  .nav { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* mobile drawer */
@media (max-width: 979px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-110%);
    transition: transform .3s ease;
  }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child { border-bottom: 0; }
  body.menu-open .nav { transform: translateY(0); display: flex; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(243, 112, 32, .18), transparent 60%),
    radial-gradient(45% 60% at 12% 85%, rgba(123, 167, 255, .16), transparent 65%),
    radial-gradient(50% 70% at 60% 110%, rgba(255, 159, 77, .10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
}
.hero h1 { margin: 16px 0 18px; }
.hero .lead {
  color: var(--text-mut);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero .lead strong { color: var(--text); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.trust-strip {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 18px 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.trust-strip strong {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  color: var(--accent);
}
.trust-strip span { color: var(--text-mut); font-size: .9rem; }
@media (min-width: 720px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

/* -------- Servicios -------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 720px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 112, 32, .45);
  box-shadow:
    0 0 0 1px rgba(123, 167, 255, .25),
    0 22px 48px -22px rgba(123, 167, 255, .35),
    var(--shadow-md);
}
.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(243,112,32,.18), rgba(255,159,77,.08));
  color: var(--accent);
  margin-bottom: 18px;
}
.cat-icon svg { width: 26px; height: 26px; }

.cat-card h3 {
  margin-bottom: 16px;
  font-size: 1.18rem;
}

.cat-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-list li {
  position: relative;
  padding: 12px 14px 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02);
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.cat-list li:hover {
  background: rgba(243, 112, 32, .07);
  border-color: rgba(243, 112, 32, .25);
}
.cat-list h4 { margin: 0; font-size: .98rem; color: var(--text); }
.cat-list p {
  margin: 4px 0 0;
  font-size: .88rem;
  color: var(--text-mut);
  line-height: 1.5;
}
.cat-list li::after {
  content: "→";
  position: absolute;
  right: 14px; top: 14px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.cat-list li:hover::after { opacity: 1; transform: translateX(0); }

/* -------- Nosotros -------- */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 980px) {
  .nosotros-grid { grid-template-columns: 1.4fr 1fr; gap: 60px; }
}
.nosotros-text h2 { margin-top: 14px; }
.nosotros-text > p { color: var(--text-mut); max-width: 60ch; }

.why-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(243, 112, 32, .12);
  color: var(--accent);
  margin-bottom: 12px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h3 { margin-bottom: 4px; font-size: 1.02rem; }
.why-item p { margin: 0; color: var(--text-mut); font-size: .92rem; }

.stats-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stats-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(243,112,32,.45), rgba(123,167,255,.35) 70%, transparent);
  z-index: -1;
  filter: blur(22px);
  opacity: .45;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { color: var(--text-mut); font-size: .9rem; }

/* -------- Galería -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.gallery-item {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1A3163, #0D1F45);
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.gallery-item:not(.is-soon):hover {
  transform: translateY(-4px);
  border-color: rgba(243, 112, 32, .55);
  box-shadow: 0 22px 48px -22px rgba(243, 112, 32, .35), var(--shadow-md);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .4s ease;
}
.gallery-item:not(.is-soon):hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 17, 42, .85) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-item figcaption h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}
.gallery-item figcaption span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mut);
}

.gallery-item.is-soon {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.is-soon::after { background: none; }
.gallery-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: .55;
}
.gallery-item.is-soon figcaption { text-align: center; }
.gallery-item.is-soon figcaption span { color: var(--text-mut); }

/* -------- Lightbox -------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 10, 28, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
body.lb-open { overflow: hidden; }

.lightbox-stage {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.lightbox-stage figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-mut);
  font-size: .92rem;
}
.lightbox-stage figcaption #lightboxTitle {
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--primary);
  color: #07112A;
  border-color: var(--primary);
  transform: scale(1.05);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 600px) {
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-stage img { max-height: 70vh; }
}

/* -------- FAQ -------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
  transition: border-color .2s, background .2s;
}
.faq-item[open] {
  border-color: rgba(123,167,255,.4);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px rgba(123,167,255,.18), 0 12px 28px -16px rgba(123,167,255,.35);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .25s, color .25s;
  line-height: 1;
}
.faq-item[open] summary::after { color: var(--accent-2); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--text-mut);
  margin: 0 0 18px;
  line-height: 1.65;
}

/* -------- Contacto -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.contact-info h2 { margin-top: 14px; }
.contact-info > p { color: var(--text-mut); }

.contact-list {
  list-style: none;
  padding: 0; margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(243, 112, 32, .12);
  color: var(--accent);
}
.contact-label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-list a { color: var(--text); font-weight: 600; }
.contact-list a:hover { color: var(--accent); }

.map {
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9) brightness(.95); }

/* form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 4px; }
.form-sub { color: var(--text-mut); font-size: .94rem; margin-bottom: 22px; }

.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: .86rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-mut);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(154, 171, 209, .7); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(243, 112, 32, .18);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239aabd1' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-mini { font-size: .8rem; color: var(--text-mut); text-align: center; margin: 12px 0 0; }

/* -------- Footer -------- */
.site-footer {
  position: relative;
  background: #050d22;
  border-top: 1px solid var(--border);
  padding-top: 56px;
  margin-top: 30px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,112,32,.55), rgba(123,167,255,.55), transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background:
    radial-gradient(40% 60% at 90% 0%, rgba(123,167,255,.10), transparent 60%),
    radial-gradient(40% 60% at 10% 0%, rgba(243,112,32,.08), transparent 60%);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h4 {
  font-family: var(--ff-display);
  font-size: .94rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mut);
  margin-bottom: 14px;
}
.site-footer p { color: var(--text-mut); font-size: .94rem; }
.brand-footer .brand-logo { height: 120px; margin-bottom: 14px; }

.social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: transform .2s, color .2s, border-color .2s;
}
.social a:hover {
  color: var(--accent);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .94rem;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 24px;
  color: var(--text-mut);
  font-size: .85rem;
  text-align: center;
}

/* -------- FAB WhatsApp -------- */
.fab-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .55);
  animation: pulse 2.4s infinite;
  transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.06); }
@keyframes pulse {
  0%   { box-shadow: 0 14px 30px -10px rgba(37,211,102,.55), 0 0 0 0   rgba(37,211,102,.55); }
  70%  { box-shadow: 0 14px 30px -10px rgba(37,211,102,.55), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px -10px rgba(37,211,102,.55), 0 0 0 0   rgba(37,211,102,0); }
}

/* -------- Animaciones (reveal on scroll) -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* -------- Reseñas -------- */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  padding: 18px 24px;
  margin: 0 auto 40px;
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: #FFC53D;
  line-height: 0;
}
.reviews-meta {
  font-size: 1.02rem;
  color: var(--text);
}
.reviews-meta strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--accent);
}
.reviews-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
  border: 1px solid rgba(255, 159, 77, .3);
  background: rgba(255, 159, 77, .08);
  transition: color .2s, background .2s, border-color .2s;
}
.reviews-meta-link:hover {
  color: var(--primary);
  background: rgba(243, 112, 32, .14);
  border-color: rgba(243, 112, 32, .55);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 112, 32, .45);
  box-shadow:
    0 0 0 1px rgba(123, 167, 255, .25),
    0 22px 48px -22px rgba(123, 167, 255, .35),
    var(--shadow-md);
}
.review-stars {
  display: inline-flex;
  gap: 1px;
  color: #FFC53D;
  line-height: 0;
}
.review-text {
  margin: 0;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1 1 auto;
}
.review-text::before { content: "“"; color: var(--accent); margin-right: 2px; }
.review-text::after  { content: "”"; color: var(--accent); margin-left: 2px; }

.review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(38, 57, 107, .55);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243,112,32,.85), rgba(255,159,77,.85));
  color: #07112A;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.review-who {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.review-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-date {
  font-size: .78rem;
  color: var(--text-mut);
}
.review-google {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(38, 57, 107, .8);
}
