:root {
  --azul: #1e88d6;
  --azul-marino: #122b6b;
  --blanco: #ffffff;
  --gris-claro: #f4f6f9;
  --gris-texto: #555c66;
  --sombra: 0 8px 24px rgba(18, 43, 107, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1c1f26;
  background: var(--blanco);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanco);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.logo img { height: 54px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.nav-links a {
  color: var(--azul-marino);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--azul);
  color: var(--azul);
}

.btn-llamar {
  background: transparent;
  color: var(--azul-marino);
  padding: 10px 0 10px 18px;
  border-radius: 0;
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.2rem;
  margin-left: auto;
}

.btn-llamar:hover { color: var(--azul); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--azul-marino);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--blanco);
  padding: 20px 0 24px;
}

.hero {
  background: linear-gradient(135deg, var(--azul-marino) 0%, var(--azul) 100%);
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 1;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  filter: drop-shadow(-10px 0 18px rgba(0,0,0,.35));
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroBounce {
  0%   { transform: perspective(800px) rotateX(2deg) scale(1); }
  100% { transform: perspective(800px) rotateX(2deg) scale(1.06); }
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-left: 0px;
}

.hero-content { max-width: 560px; }

.hero h1 {
  font-family: 'Barlow Condensed', 'Montserrat', Arial, sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 4px 12px rgba(0,0,0,.45);
  text-transform: none;
}

.hero p {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.05rem;
  opacity: .92;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .2s;
}

.btn-primary {
  background: var(--blanco);
  color: var(--azul-marino);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sombra); }

.btn-outline {
  border: 2px solid var(--blanco);
  color: var(--blanco);
}

.btn-outline:hover { background: rgba(255,255,255,.15); }


/* Franja de confianza */
.trust-strip {
  background: var(--gris-claro);
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  text-align: center;
}

.trust-item {
  flex: 1;
  min-width: 180px;
  font-weight: 700;
  color: var(--azul-marino);
}

.trust-item span {
  display: block;
  font-weight: 400;
  color: var(--gris-texto);
  font-size: .9rem;
  margin-top: 4px;
}

/* Secciones */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
  color: var(--azul-marino);
}

.section-subtitle {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
  text-align: center;
  color: var(--gris-texto);
  max-width: 900px;
  margin: 0 auto 44px;
}

.bg-gris { background: var(--gris-claro); }

/* Grid coches */
.coches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .coches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .coches-grid { grid-template-columns: 1fr; }
}

.card-coche {
  background: var(--blanco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.card-coche:hover { transform: translateY(-6px); }

.card-coche .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef1f6;
}

.card-coche .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-coche .info { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }

.card-coche h3 { margin: 0 0 4px; font-size: 1.15rem; color: var(--azul-marino); }

.card-coche .precio {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--azul);
  margin: 8px 0 12px;
}

.card-coche .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: var(--gris-texto);
  margin-bottom: 16px;
}

.card-coche .specs span {
  background: var(--gris-claro);
  padding: 4px 10px;
  border-radius: 20px;
}

.card-coche .btn-ver {
  margin-top: auto;
  text-align: center;
  background: var(--azul-marino);
  color: var(--blanco);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
}

.card-coche .btn-ver:hover { background: var(--azul); }

/* CTA banda */
.cta-band {
  background: var(--azul-marino);
  color: var(--blanco);
  text-align: center;
  padding: 60px 0;
}

.cta-band h2 { font-size: 1.9rem; margin-bottom: 10px; }
.cta-band p { opacity: .9; margin-bottom: 26px; }

/* Ficha vehículo */
.ficha {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 860px) {
  .ficha { grid-template-columns: 1fr; }
}

.ficha .img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.ficha h1 { color: var(--azul-marino); margin-bottom: 6px; }
.ficha .precio-big { font-size: 2.2rem; font-weight: 800; color: var(--azul); margin: 14px 0; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
}

.specs-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e6e9ee;
}

.specs-table td:first-child { color: var(--gris-texto); font-weight: 600; width: 40%; }

/* Formularios */
.form-box {
  background: var(--blanco);
  border-radius: 14px;
  box-shadow: var(--sombra);
  padding: 30px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9dee6;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: .95rem;
  font-family: inherit;
}

.form-box label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--azul-marino);
  display: block;
  margin-bottom: 6px;
}

.form-box button {
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Contacto layout */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .contacto-grid { grid-template-columns: 1fr; }
}

.info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.info-list strong { color: var(--azul-marino); display: block; }

.mapa {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra);
  margin-top: 24px;
}

.mapa iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--blanco);
  border-radius: 14px;
  box-shadow: var(--sombra);
  padding: 24px;
}

.post-card h3 { color: var(--azul-marino); margin-top: 0; }
.post-card .fecha { color: var(--gris-texto); font-size: .82rem; margin-bottom: 10px; }

/* Footer */
.site-footer {
  background: var(--azul-marino);
  color: var(--blanco);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { margin-top: 0; }

.footer-grid li { margin-bottom: 10px; opacity: .9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  text-align: center;
  font-size: .85rem;
  opacity: .75;
}

/* Filtros catálogo */
.filtros {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  justify-content: center;
}

.filtros select, .filtros input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d9dee6;
  font-family: inherit;
}

/* Responsive nav */
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 80px 0; text-align: center; }
  .hero-bg-wrap { display: none; }
  .hero-content { margin: 0 auto; }
  .hero p {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em; margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
}

/* ── Gallery / Slider ───────────────────────────────────────── */
.card-gallery { position: relative; }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18,43,107,.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.gallery-btn:hover { background: var(--azul); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

.gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.gdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: background .2s;
}

.gdot.active { background: #fff; }

/* Ficha gallery */
.ficha-gallery {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.ficha-gallery-main {
  position: relative;
}

.ficha-gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.ficha-gallery-main .gallery-btn {
  width: 42px;
  height: 42px;
  font-size: 28px;
}

.ficha-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: #eef1f6;
  flex-wrap: wrap;
}

.ficha-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s, outline .2s;
  outline: 2px solid transparent;
}

.ficha-thumb.active,
.ficha-thumb:hover {
  opacity: 1;
  outline-color: var(--azul);
}

/* ── Card "¿Qué coche buscas?" ───────────────────────────────── */
.card-buscar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azul-marino) 0%, var(--azul) 100%);
  min-height: 340px;
}

.card-buscar-inner {
  text-align: center;
  padding: 32px 24px;
  color: var(--blanco);
}

.card-buscar-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.card-buscar h3 {
  color: var(--blanco) !important;
  font-size: 1.3rem;
  margin: 0 0 12px;
}

.card-buscar p {
  opacity: .88;
  font-size: .95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.card-buscar .btn-ver {
  background: var(--blanco);
  color: var(--azul-marino);
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
}

.card-buscar .btn-ver:hover {
  background: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* ── WhatsApp ─────────────────────────────────────────────────── */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.125.555 4.122 1.526 5.855L.057 23.082a.75.75 0 0 0 .92.92l5.228-1.47A11.952 11.952 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.75a9.726 9.726 0 0 1-4.979-1.371l-.356-.212-3.696 1.039 1.04-3.696-.213-.356A9.726 9.726 0 0 1 2.25 12C2.25 6.615 6.615 2.25 12 2.25S21.75 6.615 21.75 12 17.385 21.75 12 21.75z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: var(--sombra); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0,0,0,.3);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS  (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Hero */
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: .95rem;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn,
  .hero-actions .btn-whatsapp {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Trust strip */
  .trust-strip .container {
    flex-direction: column;
    gap: 14px;
  }

  .trust-item {
    min-width: unset;
    font-size: .95rem;
  }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: .9rem; margin-bottom: 28px; }
  .section { padding: 44px 0; }

  /* Cards grid: 1 columna */
  .coches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card buscar */
  .card-buscar { min-height: 260px; }
  .card-buscar-inner { padding: 28px 20px; }
  .card-buscar-icon { font-size: 2.2rem; }
  .card-buscar h3 { font-size: 1.15rem; }

  /* CTA band */
  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: 1.4rem; }

  /* Ficha vehículo */
  .ficha { gap: 28px; }
  .ficha h1 { font-size: 1.4rem; }
  .ficha .precio-big { font-size: 1.8rem; }
  .ficha-thumbs { gap: 4px; }
  .ficha-thumb { width: 58px; height: 44px; }

  /* Contacto */
  .contacto-grid { gap: 28px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .site-footer { padding: 36px 0 20px; }

  /* Header */
  .site-header .container { padding: 8px 16px; }
  .logo img { height: 44px; }
  .btn-llamar { padding: 8px 12px; font-size: .85rem; }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  /* Gallery buttons */
  .gallery-btn { width: 30px; height: 30px; font-size: 18px; }
  .ficha-gallery-main .gallery-btn { width: 36px; height: 36px; font-size: 22px; }
}

@media (max-width: 480px) {
  .cta-band { display: none; }
  .trust-strip { display: none; }
}

@media (max-width: 480px) {
  .trust-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    flex-direction: unset;
  }
  .trust-item { min-width: unset; }
}


/* ── Floating call button ─────────────────────────────────────── */
.call-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  background: var(--azul-marino);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0,0,0,.3);
}

@media (max-width: 480px) {
  .call-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }
}


/* Llamar hero btn */
.btn-llamar-hero {
  background: rgba(255,255,255,.15);
  color: var(--blanco);
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 700;
}
.btn-llamar-hero:hover { background: rgba(255,255,255,.25); }


@media (max-width: 480px) {
  .btn-llamar-hero { display: none; }
}

@media (max-width: 480px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
  }

  .hero-bg-wrap {
    display: block !important;
    position: relative;
    order: -1;
    width: calc(100% - 48px);
    height: 170px;
    clip-path: none;
    filter: none;
    border-radius: 16px;
    overflow: hidden;
    margin: 12px 24px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.25);
    transform: perspective(800px) rotateX(2deg);
    animation: heroBounce 8s ease-in-out infinite alternate;
  }

  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    animation: none;
  }

  .hero .container {
    margin-top: -20px;
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    text-align: center;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    padding: 0 12px 0 40px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-family: 'Barlow Condensed', 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    text-transform: none;
    line-height: 1.1;
    text-shadow: 2px 4px 16px rgba(0,0,0,.7), 0 2px 8px rgba(0,0,0,.5);
    margin-bottom: 10px;
    margin-top: 18px;
  }

  .hero p {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    width: auto;
    padding: 0 16px;
  }

  .hero-actions .btn,
  .hero-actions .btn-whatsapp {
    font-size: 0.85rem;
    padding: 12px 24px;
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px;
    margin: 0;
  }
}

/* ── Aviso web estrenada ──────────────────────────────────────── */
.aviso-web {
  background: #fff8e1;
  border-top: 1px solid #ffe082;
  border-bottom: 1px solid #ffe082;
  padding: 12px 0;
  text-align: center;
}

.aviso-web span {
  color: #8a6d00;
  font-weight: 700;
  font-size: .95rem;
}

/* ── Badge vendido ────────────────────────────────────────────── */
.card-vendido { position: relative; }

.badge-vendido {
  position: absolute;
  top: 16px;
  left: -8px;
  background: #d32f2f;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .05em;
  padding: 6px 18px;
  z-index: 4;
  box-shadow: 0 3px 8px rgba(0,0,0,.3);
  transform: rotate(-6deg);
}

.card-vendido .card-gallery-img {
  filter: grayscale(.4) brightness(.85);
}

.badge-vendido-ficha {
  display: inline-block;
  position: static;
  transform: none;
  margin-bottom: 14px;
  border-radius: 6px;
}

/* Footer & CTA band en Montserrat */
.site-footer,
.cta-band {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
