@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

/* =========================================================
   00. VARIABLES, RESET Y BASE - PC
   ========================================================= */

:root {
  --black: #f5f2ec;
  --white: #0a0a0a;
  --accent: #00316d;
  --accent2: #1a5fa8;
  --gray: #5a5a5a;
  --surface: #ebebeb;
  --card: #e2e2e2;
  --border: rgba(10, 10, 10, 0.1);

  --color-uni: #1e8c3a;
  --color-mini: #e07b00;
  --color-para: #0057b8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}


/* =========================================================
   01. BOTONES Y COMPONENTES GENERALES - PC
   ========================================================= */

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.section-label {
  color: var(--accent);
}


/* =========================================================
   02. HEADER / NAV - PC
   ========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 3rem;
  background: #00316d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 3px;
}

.logo-sub {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.28) !important;
}

/* 02. HEADER / NAV - RESPONSIVE */

@media (max-width: 900px) {
  header {
    padding: 0 1.5rem;
  }

  nav {
    display: none;
  }
}


/* =========================================================
   03. HERO - PC
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 72px 3rem 5rem;
  overflow: hidden;
  background: url('fondo.png') center center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 10, 30, 0.75) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 4px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(255, 255, 255, 0.3),
    0 0 100px rgba(180, 210, 255, 0.2);
}

.hero h1 span {
  color: #7ec8ff;
  text-shadow:
    0 0 10px rgba(126, 200, 255, 0.3),
    0 0 30px rgba(126, 200, 255, 0.8),
    0 0 60px rgba(126, 200, 255, 0.5),
    0 0 100px rgba(126, 200, 255, 0.3);
}

.hero-desc {
  max-width: 480px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.hero .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

/* 03. HERO - RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    padding: 72px 1.5rem 4rem;
  }
}


/* =========================================================
   04. BARRA DE ESTADISTICAS - PC
   ========================================================= */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #00316d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 2rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  line-height: 1;
}

.stat-number span {
  color: rgba(255, 255, 255, 0.55);
}

.stat-label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 04. BARRA DE ESTADISTICAS - RESPONSIVE */

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}


/* =========================================================
   05. PRODUCTOS / CARRUSEL - PC
   ========================================================= */

#productos {
  overflow: hidden;
  background: #f0ede8;
}

.car-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2.5rem 3rem 0;
  color: #00316d;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.car-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #00316d;
}

.car-title {
  padding: 0.5rem 3rem 2rem;
  color: #0a0a0a;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 2px;
}

.car-body {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 460px;
}

.car-img-side {
  position: relative;
  overflow: hidden;
}

.car-img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.car-img-slide.active {
  opacity: 1;
  transform: scale(1);
}

.car-img-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-img-side::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 2;
  width: 80px;
  background: #00316d;
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
}

.car-num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.12);
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 2px;
  pointer-events: none;
}

.car-info-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem 2.5rem 2rem 3rem;
  overflow: hidden;
  background: #00316d;
}

.car-info-side::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.car-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.6rem;
}

.car-tab {
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.car-tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.car-tab.active {
  border-color: #ffffff;
  background: #ffffff;
  color: #00316d;
}

.car-info-slides {
  position: relative;
  flex: 1;
  min-height: 280px;
}

.car-info-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.45s, transform 0.45s;
}

.car-info-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ci-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.ci-product-name {
  flex-shrink: 0;
  padding-top: 2px;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 3px;
}

.ci-divider {
  flex-shrink: 0;
  width: 1px;
  min-height: 60px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.ci-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.ci-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 1.4rem;
}

.ci-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 300;
}

.ci-check-dot {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 9px;
}

.uni-dot {
  border: 1px solid #1e8c3a;
  background: rgba(30, 140, 58, 0.2);
  color: #1e8c3a;
}

.mini-dot {
  border: 1px solid #e07b00;
  background: rgba(224, 123, 0, 0.2);
  color: #e07b00;
}

.para-dot {
  border: 1px solid #0057b8;
  background: rgba(0, 87, 184, 0.2);
  color: #0057b8;
}

.ci-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.4rem;
  padding: 5px 13px;
  border: 1px solid;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.p-uni .ci-tag {
  border-color: rgba(77, 187, 107, 0.4);
  color: #4dbb6b;
}

.p-mini .ci-tag {
  border-color: rgba(240, 160, 48, 0.4);
  color: #f0a030;
}

.p-para .ci-tag {
  border-color: rgba(77, 168, 232, 0.4);
  color: #4da8e8;
}

.ci-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ci-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 24px;
  background: #ffffff;
  color: #00316d;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.ci-cta:hover {
  opacity: 0.88;
}

.ci-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.ci-brochure:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.car-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.2rem;
}

.car-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.car-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.car-dots {
  display: flex;
  gap: 6px;
}

.car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.car-dot.active {
  width: 22px;
  border-radius: 3px;
  background: #ffffff;
}

/* =========================================================
   05. PRODUCTOS / CARRUSEL - RESPONSIVE MEJORADO
   Reemplaza el bloque responsive anterior de esta seccion.
   ========================================================= */

@media (max-width: 900px) {
  #productos {
    overflow: hidden;
  }

  .car-eyebrow {
    padding: 2.4rem 1.5rem 0;
  }

  .car-title {
    padding: 0.7rem 1.5rem 1.8rem;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .car-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .car-img-side {
    min-height: clamp(280px, 58vw, 420px);
  }

  .car-img-side::after {
    display: none;
  }

  .car-img-slide img {
    object-position: center;
  }

  .car-num {
    bottom: 16px;
    left: 18px;
    font-size: 4rem;
  }

  .car-info-side {
    padding: 2.2rem 1.5rem 2rem;
  }

  .car-tabs {
    gap: 10px;
    margin-bottom: 2rem;
  }

  .car-tab {
    flex: 1 1 auto;
    min-height: 40px;
    padding: 10px 14px;
    text-align: center;
  }

  .car-info-slides {
    min-height: 360px;
  }

  .ci-header {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }

  .ci-product-name {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .ci-divider {
    display: none;
  }

  .ci-desc {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.8;
  }

  .ci-checks {
    gap: 12px;
    margin-bottom: 1.6rem;
  }

  .ci-check {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
  }

  .ci-check-dot {
    margin-top: 2px;
  }

  .ci-tag {
    margin-bottom: 1.6rem;
    line-height: 1.4;
  }

  .ci-actions {
    gap: 12px;
  }

  .ci-cta,
  .ci-brochure {
    min-height: 44px;
  }

  .car-controls {
    margin-top: 1.6rem;
  }
}

@media (max-width: 560px) {
  .car-eyebrow {
    padding: 2rem 1.1rem 0;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .car-title {
    padding: 0.6rem 1.1rem 1.4rem;
  }

  .car-img-side {
    min-height: 300px;
  }

  .car-info-side {
    padding: 2rem 1.1rem 1.8rem;
  }

  .car-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .car-tab {
    width: 100%;
  }

  .car-info-slides {
    min-height: 430px;
  }

  .ci-product-name {
    letter-spacing: 2px;
  }

  .ci-desc {
    font-size: 13.5px;
  }

  .ci-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ci-cta,
  .ci-brochure {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    text-align: center;
  }

  .car-controls {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .car-img-side {
    min-height: 270px;
  }

  .car-info-slides {
    min-height: 470px;
  }

  .ci-check {
    font-size: 13px;
  }
}


/* =========================================================
   06. MAPA - PC
   ========================================================= */

#mapa {
  padding: 6rem 3rem;
  background: var(--surface);
}

.map-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.filter-btn.active-uni {
  border-color: var(--color-uni);
  background: rgba(30, 140, 58, 0.12);
  color: var(--color-uni);
}

.filter-btn.active-mini {
  border-color: var(--color-mini);
  background: rgba(224, 123, 0, 0.12);
  color: var(--color-mini);
}

.filter-btn.active-para {
  border-color: var(--color-para);
  background: rgba(0, 87, 184, 0.12);
  color: var(--color-para);
}

.filter-btn:not(.active-uni):not(.active-mini):not(.active-para):hover {
  border-color: var(--accent);
  color: var(--accent);
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
  filter: grayscale(0.2) contrast(1.05);
}

.map-overlay-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 49, 109, 0.88);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.map-overlay-label span {
  color: #ffffff;
}

/* 06. MAPA - RESPONSIVE */

@media (max-width: 900px) {
  #mapa {
    padding: 4rem 1.5rem;
  }
}


/* =========================================================
   07. CONTACTO - PC
   ========================================================= */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 6rem 3rem;
}

.contact-section h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 2px;
}

.contact-section p {
  color: var(--gray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.contact-form select option {
  background: var(--card);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* 07. CONTACTO - RESPONSIVE */

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   08. FOOTER - PC
   ========================================================= */

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 3rem;
  background: #00316d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer .logo-text {
  color: #ffffff;
  font-size: 20px;
}

footer .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* 08. FOOTER - RESPONSIVE */

@media (max-width: 900px) {
  footer {
    padding: 2rem 1.5rem;
  }
}


/* =========================================================
   09. WHATSAPP FLOTANTE - PC
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  width: 58px;
  height: 58px;
  padding: 0;

  border-radius: 999px;
  background: #25d366;
  text-decoration: none;

  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.5s infinite;
  transition: width 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.whatsapp-float:hover {
  width: 180px;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation: none;
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-label {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;

  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;

  transition: max-width 0.3s ease, margin-left 0.3s ease, opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-label {
  max-width: 120px;
  margin-left: 10px;
  opacity: 1;
}

/* 09. WHATSAPP FLOTANTE - RESPONSIVE */

@media (max-width: 900px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float:hover {
    width: 56px;
    transform: scale(1.05);
  }

  .whatsapp-label {
    display: none;
  }
}


/* =========================================================
   10. PAGINA DE GRACIAS - PC
   ========================================================= */

.thanks-page {
  background: #00316d;
}

.thanks-main {
  min-height: 100vh;
  padding-top: 72px;
}

.thanks-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 72px);
  padding: 5rem 3rem;
  overflow: hidden;
  background: #00316d url('fondo.png') center center / cover no-repeat;
  color: #ffffff;
}

.thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 16, 46, 0.82) 100%
  );
}

.thanks-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.thanks-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.thanks-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.thanks-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
}

.thanks-hero h1 {
  margin-bottom: 1.6rem;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 12vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: 4px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.55),
    0 0 70px rgba(126, 200, 255, 0.24);
}

.thanks-hero h1 span {
  color: #7ec8ff;
  text-shadow:
    0 0 10px rgba(126, 200, 255, 0.35),
    0 0 30px rgba(126, 200, 255, 0.75),
    0 0 70px rgba(126, 200, 255, 0.42);
}

.thanks-hero p {
  max-width: 520px;
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 32px;
  border: 1px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
}

.thanks-btn:hover {
  opacity: 0.88;
}

.thanks-btn-white {
  background: #ffffff;
  color: #00316d;
}

.thanks-btn-outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: #ffffff;
}

/* 10. PAGINA DE GRACIAS - RESPONSIVE */

@media (max-width: 900px) {
  .thanks-hero {
    min-height: calc(100vh - 72px);
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .thanks-hero h1 {
    font-size: clamp(4.2rem, 20vw, 5.6rem);
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-btn {
    width: 100%;
  }
}


/* =========================================================
   11. MODAL DE BROCHURES - PC
   ========================================================= */

.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.brochure-modal.active {
  display: flex;
}

.brochure-container {
  position: relative;
  width: min(1100px, 95vw);
  max-height: 90vh;
  padding: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #00316d;
}

.brochure-container::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.brochure-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 5;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.brochure-tag {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
}

.brochure-header h2 {
  margin-top: 10px;
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 2px;
}

.brochure-header p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.district-group {
  margin-top: 40px;
}

.district-group:first-of-type {
  margin-top: 25px;
}

.district-group-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.district-group-header span {
  color: #7ec8ff;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.district-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px 18px;
  margin-top: 20px;
}

.district-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: 0.35s ease;
}

.district-card::before,
.district-card::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 6px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.district-card::before {
  transform: translateX(-18px);
}

.district-card::after {
  transform: translateX(12px);
}

.district-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(126, 200, 255, 0.18);
  transform: translateY(-8px);
}

.district-name {
  color: #ffffff;
  font-family: 'Bebas Neue', cursive;
  font-size: 38px;
  letter-spacing: 2px;
  transition: 0.3s;
}

.district-card:hover .district-name {
  color: #7ec8ff;
}

.district-action {
  color: #7ec8ff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.district-card:hover .district-action {
  transform: translateX(3px);
}

.featured-card {
  border-color: rgba(126, 200, 255, 0.35);
}

.province-card {
  border-color: rgba(224, 123, 0, 0.35);
}

.brochure-container::-webkit-scrollbar {
  width: 8px;
}

.brochure-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

.brochure-container::-webkit-scrollbar-track {
  background: transparent;
}

/* 11. MODAL DE BROCHURES - RESPONSIVE TABLET */

@media (max-width: 768px) {
  .brochure-modal {
    padding: 40px 12px;
  }

  .brochure-container {
    width: 100%;
    max-height: calc(100vh - 40px);
    padding: 24px 18px;
    border-radius: 14px;
  }

  .brochure-header h2 {
    font-size: 44px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .district-name {
    font-size: 24px;
  }
}

/* 11. MODAL DE BROCHURES - RESPONSIVE MOVIL */

@media (max-width: 480px) {
  .brochure-modal {
    padding: 36px 10px;
  }

  .brochure-container {
    max-height: calc(100vh - 32px);
    padding: 20px 16px;
    border-radius: 12px;
  }

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

  .district-name {
    font-size: 22px;
  }

  .brochure-header h2 {
    font-size: 34px;
  }
}


/* =========================================================
   12. ANIMACIONES - PC
   ========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-tag {
  animation: fadeUp 0.6s ease forwards;
}

.hero h1 {
  animation: fadeUp 0.6s 0.15s ease both;
}

.hero-desc {
  animation: fadeUp 0.6s 0.25s ease both;
}

.hero-actions {
  animation: fadeUp 0.6s 0.35s ease both;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.75),
      0 0 0 8px rgba(37, 211, 102, 0.12);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
}


/* =========================================================
   13. CLASES LEGACY / COMPATIBILIDAD - RESPONSIVE
   ========================================================= */

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

  .section {
    padding: 4rem 1.5rem;
  }
}
