/* =========================================================
   BASAL MAYOREO — style.css
   Antigeneric-2026 | Paleta oficial de marca
   ========================================================= */

:root {
  --red: #EC0808;
  --red-dark: #c20000;
  --red-glow: rgba(236, 8, 8, 0.35);
  --blue: #0003C0;
  --blue-dark: #00029a;
  --blue-glow: rgba(0, 3, 192, 0.3);
  --yellow: #FFDA00;
  --yellow-dark: #e5c400;
  --green-wa: #25D366;
  --dark: #081420;
  --dark-2: #0e1f30;
  --dark-3: #162a3d;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-mid: #555;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-red: 0 8px 32px rgba(236, 8, 8, 0.45);
  --shadow-blue: 0 8px 32px rgba(0, 3, 192, 0.35);
  --shadow-dark: 0 4px 24px rgba(0, 0, 0, 0.25);

  --section-pad: 100px 0;
  --container-max: 1200px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--red);
  padding: 8px 0;
  z-index: 1000;
  position: relative;
}

.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-accent);
  letter-spacing: 0.02em;
}

.topbar-item i {
  font-size: 0.75rem;
}

.topbar-item a {
  color: var(--white);
}

.topbar-socials {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.topbar-socials a {
  color: var(--white);
  font-size: 0.9rem;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}

.topbar-socials a:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px var(--blue-glow);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(0, 3, 192, 0.97);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 48px;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--yellow);
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 218, 0, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: var(--dark);
  background-image: url('assets/promociones/background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-rays {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  margin-left: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 218, 0, 0.12);
  border: 1px solid rgba(255, 218, 0, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: var(--white);
  font-weight: 700;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: var(--white);
  font-weight: 700;
}

.hero-title-accent {
  display: block;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--yellow);
  font-weight: 700;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 40px rgba(255, 218, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--yellow);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 30px;
  border-radius: 50px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-hero-primary i {
  font-size: 1.2rem;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  background: #20b954;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.btn-hero-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255, 218, 0, 0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--yellow);
  display: inline;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  display: inline;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  flex: 0 0 420px;
  position: relative;
  animation: fadeSlideUp 0.8s 0.2s ease both;
  margin-left: -130px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-float-stack {
  position: absolute;
  right: -20px;
  bottom: -18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.hero-mascot {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(236, 8, 8, 0.5));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}

.hero-price-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--yellow);
  color: var(--dark);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--red), 0 10px 40px rgba(236, 8, 8, 0.4);
  animation: spin-badge 8s linear infinite;
}

@keyframes spin-badge {
  0% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.badge-main {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--red);
}

.hero-float-card {
  position: static;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  box-shadow: var(--shadow-dark);
}

.hero-float-card i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.card-1 {
  animation: floatCard1 3s ease-in-out infinite;
}

.card-2 {
  animation: floatCard2 3.5s ease-in-out infinite;
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 12px 0;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 2px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-item i {
  color: var(--red);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.price-list-section {
  padding: var(--section-pad);
  background: var(--gray-light);
}

.price-table-wrap {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 3, 192, 0.18);
  box-shadow: var(--shadow-blue);
  background: linear-gradient(135deg, rgba(0, 3, 192, 0.08), rgba(236, 8, 8, 0.08));
  padding: 14px 14px 18px;
  position: relative;
  --price-row-height: 38px;
  --price-header-height: 42px;
}

.price-table-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.price-table-status {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 10px 12px;
  border-radius: 50px;
  background: rgba(0, 3, 192, 0.12);
  border: 1px solid rgba(0, 3, 192, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.price-table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.price-table-search {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 3, 192, 0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price-table-search::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.price-table-search:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 3, 192, 0.12);
}

.price-table-search:disabled {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.45);
}

.price-table-status.error {
  background: rgba(236, 8, 8, 0.12);
  border-color: rgba(236, 8, 8, 0.2);
  color: var(--red);
}

.price-table-status.hidden {
  display: none;
}

.price-table-scroll {
  overflow-x: auto;
  overflow-y: auto;
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid var(--gray-mid);
  max-height: 800px;
  transition: max-height 0.4s ease;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.price-table thead th {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.price-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  background: var(--white);
}

.price-table tbody tr:nth-child(even) td {
  background: rgba(0, 3, 192, 0.04);
}

.price-table tbody tr:hover td {
  background: rgba(255, 218, 0, 0.18);
}

.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--red);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/promociones/fondorojo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag.dark {
  color: var(--red);
  background: rgba(236, 8, 8, 0.1);
  border: 1px solid rgba(236, 8, 8, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.white {
  color: var(--white);
}

.section-title.dark {
  color: var(--text-dark);
}

.section-title em {
  font-style: normal;
  color: var(--yellow);
}

.highlight-red {
  color: var(--red);
}

.highlight-yellow {
  color: var(--yellow);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: -10px;
}

.section-subtitle.white {
  color: rgba(255, 255, 255, 0.75);
}

.section-subtitle.dark {
  color: var(--text-mid);
}

.about-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-desc strong {
  color: var(--yellow);
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 218, 0, 0.4);
}

.btn-about:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.about-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--dark);
}

.benefit-info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.benefit-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ===== PROMO ===== */
.promo-section {
  padding: var(--section-pad);
  background: var(--gray-light);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.promo-card-big {
  grid-column: 1 / span 2;
  grid-row: 1 / span 1;
  color: var(--white);
}

.promo-card-big:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-blue);
}

.promo-badge-top {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
}

.promo-card-bg-image {
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: transparent;
  box-shadow: none;
}

.promo-card-big.promo-card-bg-image {
  min-height: 380px;
}

.promo-overlay-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  color: var(--white);
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.promo-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.promo-card:not(.promo-card-big) h3 {
  color: var(--white);
}

.promo-card:not(.promo-card-big) p {
  color: rgba(255, 255, 255, 0.9);
}

.promo-tag-pill {
  display: inline-block;
  background: rgba(236, 8, 8, 0.1);
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
  border: 1px solid rgba(236, 8, 8, 0.2);
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 22px;
  border-radius: 50px;
  margin-top: 20px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-promo:hover {
  background: #20b954;
  transform: translateY(-2px);
}

.promo-cta-wrap {
  margin-top: 8px;
}

/* ===== CATEGORIAS ===== */
.categorias-section {
  padding: var(--section-pad);
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.categorias-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/promociones/fondoazul.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.cat-card:hover {
  background: rgba(255, 218, 0, 0.15);
  border-color: var(--yellow);
  transform: translateY(-8px);
}

.cat-card:hover .cat-hover-desc {
  opacity: 1;
  transform: translateY(0);
}

.cat-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-fallback {
  display: none;
  width: 72px;
  height: 72px;
  background: rgba(255, 218, 0, 0.2);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--yellow);
}

.cat-fallback.visible {
  display: flex;
}

.cat-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.5px;
}

.cat-hover-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
}

/* ===== SUCURSALES ===== */
.sucursales-section {
  padding: var(--section-pad);
  background: var(--white);
}

.sucursales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sucursal-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.sucursal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sucursal-card:hover::before {
  transform: scaleX(1);
}

.sucursal-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.sucursal-card-highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(0, 3, 192, 0.04) 0%, rgba(0, 3, 192, 0.02) 100%);
}

.sucursal-card-highlight::before {
  background: var(--blue);
}

.sucursal-card-highlight:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.sucursal-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-mid);
  line-height: 1;
  transition: color 0.3s;
}

.sucursal-card:hover .sucursal-number {
  color: var(--red);
}

.sucursal-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.sucursal-address {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sucursal-address i {
  color: var(--red);
  font-size: 0.8rem;
}

.sucursal-address em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  font-size: 0.78rem;
}

.sucursal-map {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s;
}

.sucursal-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sucursal-card:hover .sucursal-map {
  transform: scale(1.02);
  border-color: var(--red);
}

.btn-sucursal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 11px 20px;
  border-radius: 50px;
  margin-top: auto;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}

.btn-sucursal:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.sucursales-cta-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sucursales-cta-bar p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.btn-wa-full {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
}

.btn-wa-full:hover {
  background: #20b954;
  transform: translateY(-2px);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 28px 0;
  overflow: hidden;
}

.cta-band-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-band-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-band-text strong {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-call-alt {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-call-alt:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-call small {
  opacity: 0.7;
  font-size: 0.75rem;
}

/* ===== CONTACTO ===== */
.contacto-section {
  background: var(--dark);
  padding: var(--section-pad);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contacto-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(236, 8, 8, 0.15);
  border: 1px solid rgba(236, 8, 8, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact-detail a,
.contact-detail span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--yellow);
}

.btn-wa-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa-contact i {
  font-size: 1.2rem;
}

.btn-wa-contact:hover {
  background: #20b954;
  transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contacto-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(236, 8, 8, 0.05);
}

.btn-form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-red);
}

.btn-form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--green-wa);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  background: #040c14;
}

.footer-top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.footer-socials a:first-child {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-wa);
}

.footer-socials a:nth-child(2) {
  background: rgba(0, 3, 192, 0.2);
  color: #6e8efb;
}

.footer-socials a:last-child {
  background: rgba(236, 8, 8, 0.15);
  color: var(--red);
}

.footer-socials a:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--yellow);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact ul li i {
  color: var(--red);
  margin-top: 2px;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-contact ul li a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-accent);
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.wa-fab:hover {
  transform: scale(1.1) translateY(-4px);
}

.wa-fab-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 9998;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin-left: 0;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-price-badge {
    top: -10px;
    right: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .sucursales-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-card-big {
    grid-column: 1 / -1;
  }

  .promo-card-big.promo-card-bg-image {
    min-height: 280px !important;
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 64px 0;
  }

  .topbar-item:not(:first-child) {
    display: none;
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .topbar-socials {
    margin-left: 0;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 3, 192, 0.97);
  }

  .hero {
    margin-top: 0;
    padding-top: 68px;
    background: var(--dark) url('assets/promociones/background-mobile.jpg') center center / cover no-repeat;
  }


  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background: rgba(0, 3, 192, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 32px;
    gap: 16px;
    box-shadow: none;
    z-index: 9998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .nav-link {
    font-size: 1.65rem;
    padding: 14px 20px;
    line-height: 1.4;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 24px;
    font-size: 1.1rem;
    padding: 14px 28px;
  }

  .about-benefits {
    grid-template-columns: 1fr;
  }

  .sucursales-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card-bg-image {
    min-height: unset;
    aspect-ratio: 1 / 1;
  }

  .promo-card-big.promo-card-bg-image {
    aspect-ratio: unset;
    min-height: 280px !important;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sucursales-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* === HERO MOBILE === */
  .hero {
    padding: 80px 0 48px;
    background: var(--dark);
    /* Base color fallback */
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    background-image: url('assets/promociones/background-mobile.jpg?v=2');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
  }


  .hero .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin: 0 auto 16px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
    text-align: center;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    text-align: center;
    max-width: 100%;
    margin: 12px auto 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 50%;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-top: 32px;
    width: 100%;
  }

  .stat-item {
    text-align: center;
    min-width: 80px;
  }

  .stat-divider {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    display: none;
  }

  .price-table-scroll {
    max-height: 600px;
  }
}
