/* ==========================================================================
   HONDA GRUPO SUPERMOTOS - ESTILOS PRINCIPALES
   Diseño Oficial y Fiel a las Especificaciones Visuales
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800;1,900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --honda-red: #e50012;
  --honda-red-hover: #c4000f;
  --honda-dark-red: #a8000d;
  --gsm-dark: #12161a;
  --gsm-charcoal: #1c232a;
  --gsm-gray-border: #2e3842;
  --text-primary: #1e2022;
  --text-muted: #5e646a;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-offwhite: #f7f9fa;
  --bg-accent: #f0f3f6;
  --border-light: #e2e8f0;
  --border-faq: #dfe3e8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 25px rgba(229, 0, 18, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-main);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

.text-red {
  color: var(--honda-red) !important;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-honda {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.honda-logo-svg {
  height: 48px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 38px;
  background-color: #d1d5db;
}

.gsm-logo-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.gsm-pill {
  background: #0d1217;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 900;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--honda-red);
}

.gsm-pill .gsm-letter-g { color: #ffffff; }
.gsm-pill .gsm-letter-s { color: var(--honda-red); }
.gsm-pill .gsm-letter-m { color: #ffffff; }

.gsm-subtext {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  font-style: italic;
  color: #333333;
  margin-top: 3px;
  letter-spacing: 0.2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2022;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--honda-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--honda-red);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-hamburger {
  width: 44px;
  height: 44px;
  background-color: var(--honda-red);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(229, 0, 18, 0.25);
}

.btn-hamburger:hover {
  background-color: var(--honda-dark-red);
  transform: translateY(-1px);
}

.btn-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: var(--transition);
}

/* ==========================================================================
   NAVIGATION DRAWER (MOBILE & FULL MENU)
   ========================================================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #111519;
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  background: transparent;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  padding: 6px;
  border-radius: 4px;
}

.drawer-close:hover {
  color: var(--honda-red);
}

.drawer-menu {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-menu li a {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-menu li a:hover {
  color: var(--honda-red);
  padding-left: 8px;
}

.drawer-footer {
  margin-top: auto;
  padding: 28px;
  background: #090c0e;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-cta {
  background: var(--honda-red);
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-family: var(--font-main);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.drawer-cta:hover {
  background: var(--honda-dark-red);
}

/* ==========================================================================
   SECTION 1: MOTOS HONDA COLOMBIA (INTRO & CATALOG)
   ========================================================================== */
.section-intro-motos {
  padding: 60px 0 50px;
  background: #ffffff;
  text-align: center;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.intro-title span {
  font-style: normal;
}

.intro-subtitle {
  font-family: var(--font-body);
  color: #555555;
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Filters */
.catalog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: #f1f4f7;
  color: #4a5568;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--honda-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(229, 0, 18, 0.3);
}

/* Motorcycles Grid */
.motos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.moto-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.moto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.moto-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #111827;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.moto-badge.badge-new {
  background: var(--honda-red);
}

.moto-image-box {
  width: 100%;
  height: 220px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  position: relative;
}

.moto-image-box img {
  max-height: 190px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.moto-card:hover .moto-image-box img {
  transform: scale(1.06);
}

.moto-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.moto-model-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.moto-specs {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.moto-spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 4px;
}

.moto-price-box {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.price-val {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--honda-red);
}

.moto-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.btn-card-quote {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
}

.btn-card-quote:hover {
  background: #1e293b;
}

.btn-card-calc {
  background: #ffffff;
  color: var(--honda-red);
  border: 1.5px solid var(--honda-red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
}

.btn-card-calc:hover {
  background: var(--honda-red);
  color: #ffffff;
}

/* ==========================================================================
   SECTION 2: SIMULACIÓN DE CRÉDITO (IMAGE 2)
   ========================================================================== */
.section-credit-sim {
  background: #ffffff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #edf2f7;
}

.credit-sim-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.credit-sim-content {
  padding-bottom: 60px;
}

.credit-sim-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1a202c;
  margin-bottom: 20px;
}

.credit-sim-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.btn-simula-credito {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a202c;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.btn-simula-credito:hover {
  background: var(--honda-red);
  color: #ffffff;
  border-color: var(--honda-red);
  box-shadow: 0 8px 20px rgba(229, 0, 18, 0.3);
  transform: translateY(-2px);
}

.credit-sim-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.wheel-img-wrapper {
  max-width: 480px;
  width: 100%;
  margin-bottom: -15px;
}

.wheel-img-wrapper img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   SECTION 3: CONOCE NUESTRO TALLER (DARK SECTION - IMAGE 3)
   ========================================================================== */
.section-taller-dark {
  background-color: var(--gsm-charcoal);
  background-image: linear-gradient(180deg, #171d23 0%, #1c232a 100%);
  color: #ffffff;
  padding: 70px 0 0;
  text-align: center;
  position: relative;
}

.taller-head-box {
  margin-bottom: 50px;
}

.taller-sub-top {
  display: block;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 2px;
}

.taller-title-main {
  font-size: 3.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--honda-red);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.taller-sub-bottom {
  display: block;
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: #d1d5db;
  margin-top: 4px;
}

/* 4 Feature Columns Bar */
.taller-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
}

.taller-feat-col {
  padding: 30px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.taller-feat-col:last-child {
  border-right: none;
}

.taller-feat-col:hover {
  background: rgba(255, 255, 255, 0.04);
}

.taller-feat-name {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

/* ==========================================================================
   SECTION 4: AGENDA TU REVISIÓN (WATERMARK - IMAGE 3)
   ========================================================================== */
.section-agenda-watermark {
  background-color: #eef2f6;
  background-image: linear-gradient(180deg, #edf1f5 0%, #f4f6f9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-main);
  font-size: 16vw;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  letter-spacing: -2px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.agenda-cta-box {
  position: relative;
  z-index: 2;
}

.btn-agenda-revision {
  background: #ffffff;
  color: #1e2022;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 42px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: inline-block;
}

.btn-agenda-revision:hover {
  background: var(--honda-red);
  color: #ffffff;
  border-color: var(--honda-red);
  box-shadow: 0 10px 30px rgba(229, 0, 18, 0.35);
  transform: translateY(-3px) scale(1.02);
}

/* ==========================================================================
   SECTION 5: BLOG HONDA SUPERMOTOS (IMAGE 4)
   ========================================================================== */
.section-blog {
  padding: 80px 0 60px;
  background: #ffffff;
  text-align: center;
}

.blog-main-title {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.btn-ver-articulos {
  background: var(--honda-red);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 38px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(229, 0, 18, 0.3);
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 48px;
}

.btn-ver-articulos:hover {
  background: var(--honda-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(229, 0, 18, 0.4);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  text-align: left;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 200px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 8px;
}

.blog-post-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-post-title:hover {
  color: var(--honda-red);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-read-more {
  margin-top: auto;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--honda-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover {
  color: var(--honda-dark-red);
}

/* ==========================================================================
   SECTION 6: PREGUNTAS FRECUENTES (FAQ ACCORDION - IMAGE 4)
   ========================================================================== */
.section-faq {
  padding: 60px 0 90px;
  background: #ffffff;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--honda-red);
  margin-bottom: 24px;
  text-align: left;
}

.faq-accordion {
  border: 1px solid var(--border-faq);
  border-radius: 2px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-faq);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  width: 100%;
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-header:hover {
  background-color: #f8fafc;
}

.faq-icon-toggle {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  width: 16px;
  display: inline-block;
  user-select: none;
  flex-shrink: 0;
}

.faq-question-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e2022;
  flex-grow: 1;
}

.faq-item.active .faq-header {
  background-color: #fafbfc;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: #ffffff;
  padding: 0 20px;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 14px 20px 22px 36px;
}

.faq-content p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #374151;
}

/* ==========================================================================
   FOOTER (IMAGE 4)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 50px 0 35px;
  text-align: center;
}

.footer-brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.footer-honda-logo {
  height: 38px;
}

.footer-gsm-logo {
  height: 32px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
}

.footer-nav-links li a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #2b3036;
  transition: color 0.2s ease;
}

.footer-nav-links li a:hover {
  color: var(--honda-red);
}

.footer-bottom-info {
  font-size: 0.8rem;
  color: #8892b0;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================================================
   INTERACTIVE MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-close-btn {
  background: transparent;
  font-size: 1.6rem;
  color: #64748b;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
}

.modal-close-btn:hover {
  color: var(--honda-red);
}

.modal-body {
  padding: 28px;
}

/* Calculator specific styles */
.calc-field-group {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--honda-red);
}

.calc-slider-wrapper {
  margin-top: 10px;
}

.calc-range {
  width: 100%;
  accent-color: var(--honda-red);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
}

.calc-terms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.term-pill {
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.term-pill.active, .term-pill:hover {
  border-color: var(--honda-red);
  background: rgba(229, 0, 18, 0.08);
  color: var(--honda-red);
}

.calc-result-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  text-align: center;
}

.result-cuota-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.result-cuota-val {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--honda-red);
  margin: 6px 0;
}

.result-details {
  font-size: 0.8rem;
  color: #64748b;
}

.btn-modal-submit {
  width: 100%;
  background: var(--honda-red);
  color: #ffffff;
  padding: 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-modal-submit:hover {
  background: var(--honda-dark-red);
}

/* Floating WhatsApp widget */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background: #20ba59;
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .taller-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .taller-feat-col:nth-child(2) {
    border-right: none;
  }
  .taller-feat-col:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .credit-sim-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .credit-sim-content {
    padding-bottom: 20px;
  }
  .credit-sim-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .credit-sim-visual {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  .header-nav {
    display: none;
  }
  .intro-title {
    font-size: 1.85rem;
  }
  .taller-title-main {
    font-size: 2.2rem;
  }
  .taller-features-bar {
    grid-template-columns: 1fr;
  }
  .taller-feat-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .taller-feat-col:last-child {
    border-bottom: none;
  }
  .calc-terms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-nav-links {
    flex-direction: column;
    gap: 12px;
  }
}
