/* ===== ESTILOS GLOBALES - AUTOS A&N =====
   Edite los colores principales aquí:
   Azul: #032f57
   Dorado: #F6BF27
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: #f8f9fa; color: #032f57; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #e5e7eb;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.site-header .logo { font-size: 1.5rem; font-weight: 800; color: #032f57; }
.site-header .logo span { color: #F6BF27; }
.site-header .logo img { display: block; width: 100px; height: 59px; object-fit: contain; }
.site-header nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-header nav a { color: #F6BF27; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.site-header nav a:hover { color: #032f57; }
.header-wrap { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #e5e7eb; }
.btn-cotizar {
  padding: 10px 24px; background: #F6BF27; color: #032f57;
  font-weight: 800; border-radius: 10px; font-size: 0.9rem; transition: background 0.2s;
}
.btn-cotizar:hover { background: #e0ad20; }

/* ===== FOOTER ===== */
.site-footer {
  background: #032f57; color: #fff; padding: 40px 20px 20px; margin-top: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-inner h4 { color: #F6BF27; font-size: 1rem; margin-bottom: 12px; }
.footer-inner p, .footer-inner a { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-inner a:hover { color: #F6BF27; }
.footer-copy { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; gap: 10px; }
  .site-header nav { justify-content: center; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  background: #020817 url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,h=1080,fit=crop/Yyv7G0GLexSG87Zl/whatsapp-image-2026-02-19-at-12.43.33-pm-1-nLUGVMmuQORh7BcF.jpeg') center 38% / cover no-repeat;
  color: #fff; text-align: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px 20px; }
.hero-badge { display: inline-block; background: rgba(246,191,39,0.2); color: #F6BF27; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { color: #F6BF27; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn-primary { padding: 14px 32px; background: #F6BF27; color: #032f57; font-weight: 800; border-radius: 12px; font-size: 1rem; }
.hero-buttons .btn-secondary { padding: 14px 32px; border: 2px solid rgba(255,255,255,0.3); color: #fff; font-weight: 700; border-radius: 12px; font-size: 1rem; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 40px; }
.hero-stats div { text-align: center; }
.hero-stats .num { font-size: 1.8rem; font-weight: 800; color: #F6BF27; }
.hero-stats .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
@media(max-width:768px) {
  .hero { min-height: 600px; background-position: center; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
}

/* ===== SECCIÓN GENERAL ===== */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: #032f57; margin-bottom: 8px; }
.section-header p { color: #6b7280; max-width: 600px; margin: 0 auto; }
.section-bg { background: #f1f5f9; }

/* ===== VEHÍCULOS GRID ===== */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.vehicle-card {
  background: #fff; border-radius: 18px; border: 1px solid #e5e7eb;
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.2s;
}
.vehicle-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.vehicle-card .img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #e5e7eb; }
.vehicle-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card .badge { position: absolute; top: 10px; left: 10px; background: #032f57; color: #fff; padding: 4px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: 700; }
.vehicle-card .badge-feature { background: #F6BF27; color: #032f57; left: auto; right: 10px; }
.vehicle-card .price-tag { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: #F6BF27; padding: 6px 14px; border-radius: 10px; font-size: 1.1rem; font-weight: 800; }
.vehicle-card .info { padding: 16px; }
.vehicle-card .info h3 { font-size: 1.1rem; font-weight: 800; color: #032f57; margin-bottom: 4px; }
.vehicle-card .info .ref { font-size: 0.8rem; color: #9ca3af; margin-bottom: 12px; }
.vehicle-card .specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.vehicle-card .specs span { font-size: 0.8rem; color: #6b7280; }
.vehicle-card .actions { display: flex; gap: 8px; }
.vehicle-card .btn-wa { flex: 1; padding: 10px; background: #25d366; color: #fff; text-align: center; border-radius: 10px; font-weight: 700; font-size: 0.85rem; }
.vehicle-card .btn-wa:hover { background: #1da851; }

/* ===== POR QUÉ ELEGIRNOS ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: #f8fafc; border-radius: 18px; padding: 28px; border: 1px solid #e5e7eb;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(246,191,39,0.4); }
.feature-card .icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: #032f57; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

/* ===== CTA ===== */
.cta { background: #032f57; border-radius: 18px; padding: 50px 30px; text-align: center; color: #fff; margin: 40px auto; max-width: 1160px; }
.cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons a { padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; }
.cta-buttons .btn-gold { background: #F6BF27; color: #032f57; }
.cta-buttons .btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; }

/* ===== CLIENTES FOTOS ===== */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.clients-grid .photo { aspect-ratio: 1; border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; }
.clients-grid .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.clients-grid .photo:hover img { transform: scale(1.05); }

/* ===== FINANCIAMIENTO CARDS ===== */
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }
@media(max-width:768px) { .fin-grid { grid-template-columns: 1fr; } }
.fin-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid #e5e7eb; }
.fin-card-header { background: linear-gradient(135deg, #032f57, #043d6e); padding: 24px; display: flex; align-items: center; gap: 16px; }
.fin-card-header .icon { font-size: 2rem; }
.fin-card-header h2 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.fin-card-header h3 { font-size: 1.5rem; font-weight: 800; color: #F6BF27; }
.fin-card-body { padding: 24px; }
.requisito { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.requisito .check { color: #F6BF27; font-size: 1.2rem; }
.btn-aplica { display: inline-block; margin-top: 16px; padding: 12px 28px; background: #F6BF27; color: #032f57; font-weight: 800; border-radius: 12px; }
.btn-aplica:hover { background: #e0ad20; }

/* ===== GARANTÍA CARDS ===== */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card { background: #fff; border-radius: 18px; border: 1px solid #e5e7eb; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: border-color 0.2s; }
.benefit-card:hover { border-color: rgba(246,191,39,0.4); }
.benefit-card .icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1.15rem; font-weight: 800; color: #032f57; margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

/* ===== UBICACIÓN ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media(max-width:768px) { .location-grid { grid-template-columns: 1fr; } }
.info-card { background: #fff; border-radius: 18px; border: 1px solid #e5e7eb; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); margin-bottom: 16px; }
.info-card h3 { font-size: 1.1rem; font-weight: 800; color: #032f57; margin-bottom: 8px; }
.info-card p, .info-card li { font-size: 0.95rem; color: #6b7280; line-height: 1.6; }
.info-card ul { list-style: none; }
.info-card a:hover { color: #F6BF27; }

/* ===== CONTACTO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { background: #fff; border-radius: 18px; border: 1px solid #e5e7eb; padding: 32px; }
.contact-form label { display: block; font-weight: 700; font-size: 0.9rem; color: #032f57; margin-bottom: 6px; margin-top: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px; border: 1px solid #d1d5db; border-radius: 12px;
  font-family: inherit; font-size: 0.95rem; background: #f9fafb;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn-submit { margin-top: 20px; width: 100%; padding: 14px; background: #F6BF27; color: #032f57; font-weight: 800; border: none; border-radius: 12px; font-size: 1rem; cursor: pointer; }
.contact-form .btn-submit:hover { background: #e0ad20; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

/* ===== PÁGINA HEADER ===== */
.page-hero { background: linear-gradient(135deg, #032f57, #043d6e); padding: 80px 20px 40px; text-align: center; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== WEB LINK ===== */
.web-link { text-align: center; margin-top: 30px; font-size: 1.1rem; color: #F6BF27; font-weight: 700; }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
