
/* ================================================
   SOBRE MÍ — Cinematográfico, foto a sangre
   ================================================ */
#sobre-mi {
  background: var(--negro);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: stretch;
}

/* Panel foto izquierda — a sangre */
.sobre-foto-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.sobre-foto-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
/* Overlay degradado derecha */
.sobre-foto-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(13,13,13,0) 0%,
    rgba(13,13,13,0.4) 60%,
    rgba(13,13,13,1) 100%
  );
}
/* Degradado inferior */
.sobre-foto-panel::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--negro) 0%, transparent 100%);
  z-index: 1;
}

/* Badges flotantes sobre la foto */
.sobre-badges {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.sobre-badge-item {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 0.65rem 1rem;
}
.sobre-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--rojo); line-height: 1;
}
.sobre-badge-label {
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); line-height: 1.2;
}

/* Panel contenido derecha */
.sobre-content {
  padding: 6rem 6% 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--negro);
  position: relative; z-index: 1;
}

/* Línea roja vertical decorativa izquierda del contenido */
.sobre-content::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--rojo) 30%, var(--rojo) 70%, transparent);
  opacity: 0.4;
}

.sobre-content .section-tag { margin-bottom: 0.75rem; }

.sobre-nombre {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 0.95; letter-spacing: 0.02em;
  color: var(--blanco); margin-bottom: 0.4rem;
}
.sobre-cargo {
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rojo); margin-bottom: 2rem;
}

/* Separador */
.sobre-divider {
  width: 40px; height: 2px;
  background: var(--rojo); opacity: 0.6;
  margin-bottom: 1.75rem;
}

.sobre-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  line-height: 1.85; margin-bottom: 1.25rem;
  max-width: 480px;
}
.sobre-text strong { color: var(--blanco); font-weight: 600; }

/* Valores como lista con línea izquierda */
.sobre-valores {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 1.75rem 0 2.5rem; list-style: none;
}
.sobre-valores li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.sobre-valores li .check {
  width: 18px; height: 18px; border-radius: 4px;
  background: rgba(217,28,36,0.12); border: 1px solid rgba(217,28,36,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.sobre-valores li .check svg { color: var(--rojo); }

/* Botón CTA */
.sobre-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rojo); color: #fff;
  font-family: var(--font-label); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 6px;
  text-decoration: none; align-self: flex-start;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sobre-cta:hover {
  background: var(--rojo-oscuro); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,28,36,0.4); color: #fff;
}

/* Responsive Sobre mí */
@media (max-width: 900px) {
  #sobre-mi {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sobre-foto-panel {
    min-height: 380px;
    max-height: 480px;
  }
  .sobre-foto-panel::after {
    background: linear-gradient(to top,
      rgba(13,13,13,1) 0%,
      rgba(13,13,13,0.3) 60%,
      transparent 100%
    );
  }
  .sobre-content {
    padding: 3rem 5%;
  }
  .sobre-content::before { display: none; }
  .sobre-badges { bottom: 1.25rem; left: 1.25rem; }
  .sobre-cta { align-self: stretch; justify-content: center; }
  .sobre-text { max-width: 100%; }
}
@media (max-width: 480px) {
  .sobre-foto-panel { min-height: 300px; }
  .sobre-badge-num { font-size: 1.2rem; }
}

/* ================================================
   CONTACTO + MAPA
   ================================================ */
#contacto {
  background: var(--negro-2);
}
.contacto-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
}

/* Panel izquierdo */
.contacto-info-panel {
  padding: 5rem 5%;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.contacto-sub {
  font-size: 0.92rem; color: rgba(255,255,255,0.45);
  line-height: 1.6; margin: 0.75rem 0 2.5rem;
}
.contacto-items {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.contacto-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contacto-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(4px);
}
.contacto-item-icon {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contacto-item-label {
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.contacto-item-value {
  font-family: var(--font-label); font-size: 0.9rem; font-weight: 700;
  color: var(--blanco); margin-top: 1px; letter-spacing: 0.02em;
}
.contacto-arrow {
  margin-left: auto; flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
}
.contacto-item:hover .contacto-arrow {
  color: rgba(255,255,255,0.6);
  transform: translateX(3px);
}

/* Mapa derecha — a sangre completo */
.contacto-mapa {
  position: relative;
  min-height: 500px;
}
.contacto-mapa iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(70%) invert(92%) contrast(0.88) brightness(0.95);
}

/* Responsive contacto */
@media (max-width: 900px) {
  .contacto-wrap {
    grid-template-columns: 1fr;
  }
  .contacto-info-panel {
    padding: 3.5rem 5%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .contacto-mapa {
    min-height: 320px;
  }
  .contacto-mapa iframe { position: static; height: 320px; }
}

/* ================================================
   CTA BANNER — Premium, tipografía fuerte
   ================================================ */
#cta-banner {
  background: var(--negro-2);
  position: relative;
  overflow: hidden;
}

/* Textura de puntos muy sutil */
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

/* Resplandor rojo difuso en el fondo */
#cta-banner::after {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(217,28,36,0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-redline {
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--rojo) 20%, var(--rojo) 80%, transparent);
  position: relative; z-index: 1;
}

.cta-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

/* Izquierda */
.cta-left { }
.cta-tag {
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rojo); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.cta-tag::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--rojo);
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1; letter-spacing: 0.02em;
  color: var(--blanco); margin-bottom: 1rem;
}
.cta-title span { color: var(--rojo); }
.cta-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  line-height: 1.6; max-width: 300px;
}

/* Centro: número telefónico grande */
.cta-phone-wrap {
  text-align: center;
  padding: 0 2rem;
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.cta-phone-label {
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 0.5rem;
}
.cta-phone-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: 0.04em; color: var(--blanco);
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s;
  display: block;
}
.cta-phone-num:hover { color: #25D366; }

/* Derecha: botones */
.cta-actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-end;
}
.cta-btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff;
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.75rem; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn-wa:hover {
  background: #1aad55; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35); color: #fff;
}
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.5);
  font-family: var(--font-label); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.cta-btn-outline:hover { color: var(--blanco); border-color: rgba(255,255,255,0.3); }

/* Responsive CTA */
@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 3rem 5%;
  }
  .cta-tag { justify-content: center; }
  .cta-sub { max-width: 100%; }
  .cta-phone-wrap {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
  }
  .cta-actions {
    align-items: center;
    flex-direction: row; flex-wrap: wrap; justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-btn-wa, .cta-btn-outline { flex: 1; justify-content: center; }
  .cta-phone-num { font-size: 1.6rem; }
}

/* ================================================
   FOOTER — Premium, limpio
   ================================================ */
#footer {
  background: var(--negro-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 5% 0;
}

.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; padding-bottom: 3.5rem;
}

/* Brand */
.footer-brand img { height: 52px; margin-bottom: 1.25rem; display: block; }
.footer-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.35);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.footer-social {
  display: flex; gap: 0.5rem;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: rgba(217,28,36,0.1);
  border-color: rgba(217,28,36,0.25);
  color: var(--rojo);
}

/* Nav columns */
.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.footer-col-title {
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rojo); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 0.83rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
  display: block;
}
.footer-col ul li a:hover { color: var(--blanco); }

/* Divider */
.footer-divider {
  max-width: 1280px; margin: 0 auto;
  height: 1px; background: rgba(255,255,255,0.05);
}

/* Bottom bar */
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
.footer-copy strong { color: rgba(255,255,255,0.4); font-weight: 500; }
.footer-admin-link {
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: opacity 0.2s;
}
.footer-admin-link:hover { opacity: 0.7; }

@media (max-width: 480px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4); text-decoration: none;
  animation: wa-bounce 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ================================================
   MODAL VEHÍCULO — Premium, galería, todos los datos
   ================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--negro-2);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 820px; width: 100%;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  margin: auto;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.94) translateY(12px); }
  to   { opacity:1; transform: scale(1)    translateY(0); }
}

/* Botón cerrar */
.modal-close-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; cursor: pointer; font-size: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(217,28,36,0.7); }

/* ---- GALERÍA ---- */
.modal-gallery { position: relative; overflow: hidden; background: var(--negro-3); }

/* Viewport de imágenes */
.modal-imgs-track-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.modal-imgs-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%;
}
.modal-imgs-track img {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.modal-no-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--negro-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: rgba(255,255,255,0.15);
}

/* Flechas de galería */
.modal-gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.modal-gal-btn:hover { background: var(--rojo); border-color: var(--rojo); }
.modal-gal-btn.left  { left: 0.75rem; }
.modal-gal-btn.right { right: 0.75rem; }
.modal-gal-btn[disabled] { opacity: 0.25; pointer-events: none; }

/* Badge tipo sobre la galería */
.modal-tipo-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3;
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}

/* Contador de fotos */
.modal-img-counter {
  position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  border-radius: 20px; padding: 3px 10px;
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 700;
  color: rgba(255,255,255,0.7); letter-spacing: 0.08em;
}

/* Thumbnails */
.modal-thumbs {
  display: flex; gap: 6px; padding: 8px 12px;
  background: var(--negro-3); overflow-x: auto;
  scrollbar-width: none;
}
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumb {
  flex: 0 0 72px; height: 52px; border-radius: 6px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.modal-thumb:hover { opacity: 0.8; }
.modal-thumb.active { border-color: var(--rojo); opacity: 1; }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- CUERPO DEL MODAL ---- */
.modal-body {
  padding: 1.75rem 2rem 2rem;
}

/* Header: nombre + precio */
.modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.modal-nombre {
  font-family: var(--font-label); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blanco); line-height: 1.1; margin-bottom: 0.3rem;
}
.modal-meta {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.38);
}
.modal-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.modal-precio-wrap { text-align: right; flex-shrink: 0; }
.modal-precio-label {
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 2px;
}
.modal-precio {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--rojo); line-height: 1; letter-spacing: 0.02em;
}

/* Divider */
.modal-sep {
  height: 1px; background: rgba(255,255,255,0.07); margin: 1.25rem 0;
}

/* Descripción */
.modal-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 1.25rem;
}

/* Chips de datos */
.modal-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem;
}
.modal-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 0.4rem 0.85rem;
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.modal-chip svg { flex-shrink: 0; color: rgba(255,255,255,0.3); }

/* Financiación box */
.modal-financ {
  background: rgba(217,28,36,0.07);
  border: 1px solid rgba(217,28,36,0.2);
  border-radius: 10px; padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.modal-financ-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(217,28,36,0.12); border: 1px solid rgba(217,28,36,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--rojo);
}
.modal-financ-label {
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 2px;
}
.modal-financ-value {
  font-family: var(--font-label); font-size: 0.95rem; font-weight: 700;
  color: var(--blanco); letter-spacing: 0.02em;
}
.modal-financ-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px;
}

/* Botones acción */
.modal-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.modal-btn-wa {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #fff;
  font-family: var(--font-label); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1.5rem; border-radius: 8px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  min-width: 0;
}
.modal-btn-wa:hover { background: #1aad55; transform: translateY(-1px); color: #fff; }
.modal-btn-close {
  padding: 0.9rem 1.5rem; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.modal-btn-close:hover { background: rgba(255,255,255,0.1); color: var(--blanco); }

/* Responsive modal */
@media (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    border-radius: 16px 16px 0 0; max-height: 92vh;
    overflow-y: auto; margin: 0;
  }
  .modal-body { padding: 1.25rem 1.25rem 1.75rem; }
  .modal-precio { font-size: 1.8rem; }
  .modal-btn-close { display: none; }
}

/* ================================================
   RESPONSIVE — Mobile first
   ================================================ */

/* Tablet y abajo: ocultar nav desktop, mostrar toggle */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-topbar { display: none; }
}

/* Desktop: ocultar toggle */
@media (min-width: 901px) {
  .nav-toggle { display: none !important; }
  .nav-mobile-panel,
  .nav-mobile-overlay { display: none !important; }
}

/* ---- Hero ---- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 110px; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { display: none; }
}

/* ---- Stats ---- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.25rem 1rem; }
}

/* ---- Carrusel ---- */
@media (max-width: 1024px) {
  .car-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
  .car-card { flex: 0 0 100%; }
}

/* ---- Sections ---- */
@media (max-width: 768px) {
  .section-wrap { padding: 4rem 5%; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-foto-wrap { max-width: 340px; margin: 0 auto; }
  .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .mapa-wrap { height: 280px; }
}

/* ---- Tipografía mobile ---- */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-primary, .btn-outline { padding: 0.8rem 1.4rem; font-size: 0.8rem; }
  .section-title { font-size: 1.6rem; }
  .nav-mobile-links a { font-size: 0.9rem; padding: 0.85rem 1rem; }
}
