/* =========================================================
   DESTILADOS THC
   CSS PRINCIPAL
   SEO + GEO + UX + CONVERSIÓN + POLÍTICAS + RESPONSIVE
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #071f1c;
  --primary: #006b5f;
  --primary-dark: #004f47;
  --accent: #c9fff4;
  --soft: #effaf7;
  --white: #ffffff;
  --text: #12312d;
  --muted: #6f817d;
  --border: #dcebe7;

  --shadow:
    0 24px 60px rgba(0, 0, 0, .10);

  --shadow-soft:
    0 14px 35px rgba(0, 0, 0, .05);

  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;

  --transition: .25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.age-lock,
html.age-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 96px 0;
}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(7, 31, 28, .94);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.logo {
  color: var(--white);

  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.logo span {
  color: #8af3e3;
  margin-left: 3px;
}

.main-menu {
  display: flex;
  align-items: center;

  gap: 28px;
}

.main-menu a {
  position: relative;

  color: rgba(255, 255, 255, .86);

  font-size: 14px;
  font-weight: 700;

  transition: var(--transition);
}

.main-menu a:hover {
  color: var(--accent);
}

.main-menu a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: var(--transition);
}

.main-menu a:hover::after {
  width: 100%;
}


/* =========================================================
   BOTONES
========================================================= */

.header-whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 12px 24px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 900;

  transition: var(--transition);

  border: 0;
  cursor: pointer;
}

.header-whatsapp,
.btn-primary {
  color: var(--white);
  background: var(--primary);
}

.header-whatsapp:hover,
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
}

.btn-light:hover {
  transform: translateY(-2px);
}


/* =========================================================
   MENÚ MÓVIL
========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  background: transparent;

  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 6px auto;

  background: var(--white);

  transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  padding: 110px 0;

  color: var(--white);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(201, 255, 244, .25),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #062b27,
      #006b5f
    );

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -180px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .06);
}

.hero::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: -180px;
  bottom: -170px;

  border-radius: 50%;

  background:
    rgba(201, 255, 244, .07);
}

.hero-grid,
.intro-grid,
.featured-grid,
.faq-grid,
.contact-box {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 58px;

  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;

  padding: 8px 15px;

  border-radius: 999px;

  color: var(--accent);

  background:
    rgba(255, 255, 255, .12);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary-dark);
  background: #dff9f3;
}

.hero h1,
.intro h2,
.section-title h2,
.featured h2,
.carousel-header h2,
.process h2,
.faq h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 66px);

  line-height: 1;

  letter-spacing: -.055em;

  margin-bottom: 22px;
}

.hero p {
  max-width: 610px;

  font-size: 18px;

  color:
    rgba(255, 255, 255, .82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;

  gap: 34px;

  margin-top: 44px;
}

.hero-stats > div {
  padding-right: 30px;

  border-right:
    1px solid rgba(255, 255, 255, .12);
}

.hero-stats > div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;

  font-size: 30px;
  line-height: 1;

  margin-bottom: 7px;
}

.hero-stats span {
  color:
    rgba(255, 255, 255, .72);

  font-size: 14px;
}


/* =========================================================
   HERO IMAGEN
========================================================= */

.hero-showcase {
  position: relative;
}

.hero-showcase img,
.featured-image img {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.hero-floating-card {
  position: absolute;

  left: -28px;
  bottom: 28px;

  max-width: 245px;

  padding: 22px;

  border-radius: 22px;

  background: var(--white);

  color: var(--text);

  box-shadow: var(--shadow);
}

.hero-floating-card strong {
  display: block;

  color: var(--primary);

  margin-bottom: 6px;

  font-size: 21px;
  line-height: 1.15;
}

.hero-floating-card span {
  display: block;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.5;
}


/* =========================================================
   FRANJA DE CONFIANZA
========================================================= */

.compliance-strip {
  position: relative;
  z-index: 5;

  background: var(--dark);

  border-top:
    1px solid rgba(255, 255, 255, .08);

  border-bottom:
    1px solid rgba(255, 255, 255, .08);
}

.compliance-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}

.compliance-item {
  display: flex;
  align-items: center;

  gap: 14px;

  min-height: 92px;

  padding: 18px 24px;

  border-right:
    1px solid rgba(255, 255, 255, .08);
}

.compliance-item:last-child {
  border-right: 0;
}

.compliance-item span {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background:
    rgba(201, 255, 244, .12);

  color: var(--accent);

  font-size: 11px;
  font-weight: 900;
}

.compliance-item p {
  margin: 0;

  color:
    rgba(255, 255, 255, .76);

  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
  background: var(--white);
}

.intro p,
.section-title p,
.featured p,
.faq p,
.contact p {
  color: var(--muted);

  font-size: 17px;
}

.intro-copy {
  display: grid;

  gap: 18px;
}

.intro-copy p {
  margin: 0;
}


/* =========================================================
   FONDOS GENERALES
========================================================= */

.categories,
.soft,
.faq,
.seo-information {
  background: var(--soft);
}


/* =========================================================
   TÍTULOS DE SECCIONES
========================================================= */

.section-title {
  max-width: 780px;

  margin: 0 auto 56px;

  text-align: center;
}

.section-title p {
  max-width: 680px;

  margin: 0 auto;
}


/* =========================================================
   CATEGORÍAS
========================================================= */

.category-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 26px;
}

.category-card {
  position: relative;

  min-height: 420px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: var(--shadow);

  background: var(--dark);
}

.category-card img {
  width: 100%;
  height: 100%;

  min-height: 420px;

  object-fit: cover;

  opacity: .62;

  transition: .35s ease;
}

.category-card:hover img {
  transform: scale(1.06);
  opacity: .48;
}

.category-card div {
  position: absolute;

  inset: auto 0 0 0;

  padding: 30px;

  color: var(--white);

  background:
    linear-gradient(
      to top,
      rgba(7, 31, 28, .90),
      transparent
    );
}

.category-card span {
  display: inline-flex;

  width: 44px;
  height: 44px;

  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, .14);

  border-radius: 50%;

  font-weight: 900;

  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 28px;
  line-height: 1;

  margin-bottom: 12px;
}

.category-card p {
  color:
    rgba(255, 255, 255, .78);

  margin-bottom: 18px;
}

.category-card a {
  color: var(--accent);

  font-weight: 900;
}


/* =========================================================
   INFORMACIÓN DESTILADOS / SEO
========================================================= */

.info-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}

.info-feature {
  position: relative;

  padding: 30px;

  border:
    1px solid var(--border);

  border-radius: 26px;

  background: var(--white);

  transition: var(--transition);
}

.info-feature:hover {
  transform: translateY(-5px);

  border-color:
    rgba(0, 107, 95, .25);

  box-shadow: var(--shadow-soft);
}

.info-feature > span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  margin-bottom: 24px;

  border-radius: 50%;

  background: #e5faf5;

  color: var(--primary);

  font-size: 13px;
  font-weight: 900;
}

.info-feature h3 {
  margin-bottom: 12px;

  font-size: 21px;

  line-height: 1.15;
}

.info-feature p {
  color: var(--muted);

  font-size: 15px;
}


/* =========================================================
   PRODUCTO DESTACADO
========================================================= */

.featured-grid {
  padding: 44px;

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #ecfbf7
    );

  border:
    1px solid var(--border);

  box-shadow: var(--shadow);
}

.featured ul {
  list-style: none;

  display: grid;

  gap: 14px;

  margin: 28px 0;
}

.featured li {
  position: relative;

  padding-left: 28px;

  color: var(--text);

  font-weight: 700;
}

.featured li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 12px;
  height: 12px;

  background: var(--primary);

  border-radius: 50%;
}


/* =========================================================
   GUÍA DEL CATÁLOGO
========================================================= */

.catalog-guide {
  background: var(--white);
}

.catalog-guide-grid {
  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  gap: 70px;

  align-items: center;
}

.catalog-guide h2,
.geo-section h2,
.policy-section h2 {
  margin-bottom: 22px;

  font-size:
    clamp(34px, 4.6vw, 58px);

  line-height: 1;

  letter-spacing: -.05em;
}

.catalog-guide p {
  color: var(--muted);

  font-size: 17px;
}

.catalog-checklist {
  display: grid;

  gap: 12px;
}

.catalog-checklist div {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px 20px;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: var(--soft);
}

.catalog-checklist strong {
  flex: 0 0 42px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  height: 42px;

  border-radius: 50%;

  background: var(--primary);

  color: var(--white);

  font-size: 12px;
}

.catalog-checklist span {
  font-weight: 800;
}


/* =========================================================
   CARRUSEL
========================================================= */

.carousel-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  margin-bottom: 32px;
}

.carousel-description {
  max-width: 650px;

  margin-top: -10px;

  color: var(--muted);
}

.carousel-controls {
  display: flex;

  gap: 10px;
}

.carousel-btn {
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  border:
    1px solid var(--border);

  background: var(--white);

  color: var(--primary);

  border-radius: 50%;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);

  color: var(--white);

  border-color: var(--primary);
}

.product-carousel {
  display: grid;

  grid-auto-flow: column;

  grid-auto-columns:
    calc((100% - 78px) / 4);

  gap: 26px;

  overflow-x: auto;

  scroll-snap-type:
    x mandatory;

  scroll-behavior: smooth;

  padding: 8px 4px 22px;

  scrollbar-width: none;

  overscroll-behavior-inline: contain;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   CARDS PRODUCTOS
========================================================= */

.product-card {
  scroll-snap-align: start;

  min-width: 0;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: 26px;

  padding: 10px;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, .05);

  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);

  border-color:
    rgba(0, 107, 95, .25);
}

.product-card img {
  width: 100%;

  aspect-ratio: 1 / .92;

  object-fit: cover;

  border-radius: 20px;

  margin-bottom: 18px;

  background: var(--soft);
}

.product-card > span {
  display: inline-flex;

  margin-bottom: 10px;

  padding: 6px 12px;

  background: #e5faf5;

  color: var(--primary-dark);

  border-radius: 999px;

  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  font-size: 21px;

  line-height: 1.15;

  margin-bottom: 10px;
}

.product-card p {
  color: var(--muted);

  font-size: 15px;
}

.open-product {
  width: 100%;

  margin-top: 18px;

  min-height: 44px;

  padding: 10px 18px;

  border-radius: 999px;

  border: 0;

  color: var(--white);

  background: var(--primary);

  font-weight: 900;

  cursor: pointer;

  transition: var(--transition);
}

.open-product:hover {
  background: var(--primary-dark);
}


/* =========================================================
   GEO COLOMBIA
========================================================= */

.geo-section {
  background: var(--white);
}

.city-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px;
}

.city-card {
  position: relative;

  overflow: hidden;

  padding: 34px;

  border:
    1px solid var(--border);

  border-radius: 26px;

  background: var(--white);

  transition: var(--transition);
}

.city-card::after {
  content: "";

  position: absolute;

  right: -60px;
  bottom: -70px;

  width: 160px;
  height: 160px;

  border-radius: 50%;

  background: var(--soft);

  pointer-events: none;
}

.city-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(0, 107, 95, .25);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .06);
}

.city-index {
  position: relative;
  z-index: 2;

  display: inline-flex;

  margin-bottom: 24px;

  padding: 7px 12px;

  border-radius: 999px;

  background: #e5faf5;

  color: var(--primary-dark);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .08em;
}

.city-card h3 {
  position: relative;
  z-index: 2;

  margin-bottom: 14px;

  font-size: 25px;

  line-height: 1.1;
}

.city-card p {
  position: relative;
  z-index: 2;

  margin-bottom: 22px;

  color: var(--muted);
}

.city-card a {
  position: relative;
  z-index: 2;

  display: inline-flex;

  color: var(--primary);

  font-size: 14px;
  font-weight: 900;

  transition: var(--transition);
}

.city-card a:hover {
  color: var(--primary-dark);

  transform: translateX(3px);
}


/* =========================================================
   COBERTURA COLOMBIA
========================================================= */

.colombia-coverage {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 40px;

  align-items: center;

  margin-top: 28px;

  padding: 38px;

  border-radius: 28px;

  background: var(--soft);

  border:
    1px solid var(--border);
}

.colombia-coverage h3 {
  margin-bottom: 12px;

  font-size: 28px;

  line-height: 1.1;
}

.colombia-coverage p {
  max-width: 760px;

  color: var(--muted);
}


/* =========================================================
   PROCESO
========================================================= */

.process {
  background: var(--white);
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;
}

.process-grid article {
  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: 26px;

  padding: 30px;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, .04);

  transition: var(--transition);
}

.process-grid article:hover {
  transform: translateY(-5px);

  border-color:
    rgba(0, 107, 95, .22);
}

.process-grid span {
  display: inline-flex;

  width: 48px;
  height: 48px;

  align-items: center;
  justify-content: center;

  background: #e5faf5;

  color: var(--primary);

  border-radius: 50%;

  font-weight: 900;

  margin-bottom: 18px;
}

.process-grid h3 {
  margin-bottom: 10px;

  font-size: 21px;
}

.process-grid p {
  color: var(--muted);
}


/* =========================================================
   POLÍTICAS / CONFIANZA
========================================================= */

.policy-section {
  background: var(--dark);
}

.policy-header {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 60px;

  align-items: end;

  margin-bottom: 44px;
}

.policy-header h2 {
  color: var(--white);
}

.policy-header p {
  color:
    rgba(255, 255, 255, .68);

  font-size: 17px;
}

.policy-section .eyebrow.dark {
  background:
    rgba(201, 255, 244, .1);

  color: var(--accent);
}

.policy-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.policy-card {
  padding: 28px;

  border:
    1px solid rgba(255, 255, 255, .1);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, .04);

  transition: var(--transition);
}

.policy-card:hover {
  transform: translateY(-4px);

  background:
    rgba(255, 255, 255, .06);

  border-color:
    rgba(201, 255, 244, .20);
}

.policy-card > span {
  display: inline-flex;

  margin-bottom: 22px;

  padding: 7px 11px;

  border-radius: 999px;

  background:
    rgba(201, 255, 244, .12);

  color: var(--accent);

  font-size: 11px;
  font-weight: 900;
}

.policy-card h3 {
  margin-bottom: 12px;

  color: var(--white);

  font-size: 20px;
}

.policy-card p {
  color:
    rgba(255, 255, 255, .65);

  font-size: 14px;
}

.policy-links {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 28px;
}

.policy-links a {
  display: inline-flex;

  padding: 11px 16px;

  border:
    1px solid rgba(255, 255, 255, .12);

  border-radius: 999px;

  color:
    rgba(255, 255, 255, .82);

  font-size: 13px;
  font-weight: 700;

  transition: var(--transition);
}

.policy-links a:hover {
  background:
    rgba(255, 255, 255, .08);

  color: var(--accent);
}


/* =========================================================
   FAQ
========================================================= */

.faq-grid {
  align-items: start;
}

.faq-intro {
  align-self: start;

  position: sticky;

  top: 120px;
}

.faq-list {
  display: grid;

  gap: 14px;
}

.faq-item {
  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;

  transition: var(--transition);
}

.faq-item:hover {
  border-color:
    rgba(0, 107, 95, .22);
}

.faq-item.active {
  border-color:
    rgba(0, 107, 95, .30);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, .04);
}

.faq-item button {
  width: 100%;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding: 20px 22px;

  border: 0;

  background: transparent;

  color: var(--text);

  font-size: 16px;
  font-weight: 900;

  cursor: pointer;

  text-align: left;
}

.faq-item button span {
  flex: 0 0 auto;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--soft);

  color: var(--primary);

  font-size: 21px;

  transition: transform .2s ease;
}

.faq-answer {
  display: none;

  padding:
    0 22px 22px;

  color: var(--muted);

  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active button span {
  transform: rotate(45deg);
}

.faq-note {
  margin-top: 28px;

  padding: 20px;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: var(--white);
}

.faq-note strong {
  display: block;

  margin-bottom: 6px;

  color: var(--primary-dark);
}

.faq-note p {
  margin: 0;

  font-size: 14px;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact {
  background: var(--white);
}

.contact-box {
  padding: 46px;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #062b27,
      #006b5f
    );

  color: var(--white);

  box-shadow: var(--shadow);
}

.contact-box h2 {
  color: var(--white);
}

.contact-box p {
  color:
    rgba(255, 255, 255, .76);
}

.contact-box .btn-primary {
  background: var(--white);

  color: var(--primary-dark);
}

.contact-box .btn-primary:hover {
  background: var(--accent);

  color: var(--primary-dark);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--dark);

  color:
    rgba(255, 255, 255, .72);

  padding-top: 64px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr .8fr .8fr;

  gap: 42px;

  padding-bottom: 48px;
}

.footer p {
  max-width: 360px;

  margin-top: 14px;
}

.footer h3 {
  color: var(--white);

  margin-bottom: 16px;
}

.footer a {
  display: block;

  color:
    rgba(255, 255, 255, .72);

  margin-bottom: 10px;

  transition: var(--transition);
}

.footer a:hover {
  color: var(--accent);
}

.footer-copy {
  border-top:
    1px solid rgba(255, 255, 255, .08);

  padding: 20px;

  text-align: center;

  font-size: 14px;
}


/* =========================================================
   MODAL PRODUCTOS
========================================================= */

.product-modal {
  position: fixed;

  inset: 0;

  z-index: 200;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 22px;
}

.product-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(0, 0, 0, .62);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;

  z-index: 2;

  width: min(920px, 100%);

  max-height: 92vh;

  overflow-y: auto;

  background: var(--white);

  border-radius: 30px;

  padding: 26px;

  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;

  top: 16px;
  right: 18px;

  z-index: 10;

  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  background: #edf5f3;

  color: var(--text);

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);

  color: var(--white);
}

.modal-grid {
  display: grid;

  grid-template-columns:
    .95fr 1.05fr;

  gap: 34px;

  align-items: center;
}

.modal-grid img {
  width: 100%;

  aspect-ratio: 1 / .9;

  object-fit: cover;

  border-radius: 24px;

  background: var(--soft);
}

#modalCategory {
  display: inline-flex;

  margin-bottom: 14px;

  padding: 7px 13px;

  border-radius: 999px;

  background: #e5faf5;

  color: var(--primary-dark);

  font-size: 12px;
  font-weight: 900;
}

#modalTitle {
  font-size:
    clamp(30px, 4vw, 48px);

  line-height: 1;

  margin-bottom: 18px;

  letter-spacing: -.04em;
}

#modalDescription {
  color: var(--muted);

  margin-bottom: 20px;
}

.modal-note {
  padding: 16px;

  border-radius: 18px;

  background: var(--soft);

  color: var(--text);

  margin-bottom: 22px;

  font-weight: 700;
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 120;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border-radius: 999px;

  background: #25d366;

  color: #fff;

  font-weight: 900;

  box-shadow: var(--shadow);

  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .16);
}


/* =========================================================
   VERIFICACIÓN +18
========================================================= */

#age-verification-overlay {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 24px;

  background:
    rgba(3, 20, 18, .96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 1;

  visibility: visible;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

#age-verification-overlay.hidden {
  opacity: 0;
  visibility: hidden;

  pointer-events: none;
}

.age-verification-box,
.age-modal,
.age-box {
  width: min(520px, 100%);

  padding: 40px;

  text-align: center;

  border:
    1px solid rgba(255, 255, 255, .10);

  border-radius: 30px;

  background: var(--white);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .30);
}

.age-verification-box h2,
.age-modal h2,
.age-box h2 {
  margin-bottom: 16px;

  color: var(--text);

  font-size:
    clamp(30px, 5vw, 46px);

  line-height: 1;

  letter-spacing: -.04em;
}

.age-verification-box p,
.age-modal p,
.age-box p {
  color: var(--muted);

  margin-bottom: 25px;
}

.age-verification-actions,
.age-actions {
  display: flex;

  gap: 12px;

  justify-content: center;

  flex-wrap: wrap;
}

#age-confirm-btn,
#age-exit-btn {
  min-height: 46px;

  padding: 12px 24px;

  border: 0;

  border-radius: 999px;

  cursor: pointer;

  font-weight: 900;

  transition: var(--transition);
}

#age-confirm-btn {
  background: var(--primary);

  color: var(--white);
}

#age-confirm-btn:hover {
  background: var(--primary-dark);
}

#age-exit-btn {
  background: var(--soft);

  color: var(--text);
}

#age-exit-btn:hover {
  background: #dcebe7;
}


/* =========================================================
   DESKTOP INTERMEDIO
========================================================= */

@media (max-width: 1100px) {

  .product-carousel {
    grid-auto-columns:
      calc((100% - 52px) / 3);
  }

  .process-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .info-feature-grid,
  .policy-grid,
  .compliance-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .compliance-item:nth-child(2) {
    border-right: 0;
  }

  .catalog-guide-grid {
    gap: 42px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 920px) {

  .hero-grid,
  .intro-grid,
  .featured-grid,
  .faq-grid,
  .contact-box,
  .modal-grid,
  .catalog-guide-grid,
  .policy-header {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-carousel {
    grid-auto-columns:
      calc((100% - 26px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 680px;

    margin: 0 auto;
  }

  .hero-floating-card {
    left: 18px;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .colombia-coverage {
    grid-template-columns: 1fr;
  }

  .policy-header {
    gap: 28px;
  }

  .faq-intro {
    position: static;
  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 768px) {

  .header-inner {
    min-height: 70px;
  }

  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;

    top: 70px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    padding: 26px 4% 32px;

    background: var(--dark);

    border-top:
      1px solid rgba(255, 255, 255, .08);

    box-shadow:
      0 20px 40px rgba(0, 0, 0, .15);
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu a {
    width: 100%;

    padding: 7px 0;
  }

  .hero {
    padding: 76px 0 68px;
  }

  .section {
    padding: 68px 0;
  }

  .hero h1,
  .intro h2,
  .section-title h2,
  .featured h2,
  .carousel-header h2,
  .process h2,
  .faq h2,
  .contact h2 {
    font-size:
      clamp(34px, 10vw, 48px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats > div {
    padding-right: 20px;
  }

  .hero-floating-card {
    position: relative;

    left: auto;
    bottom: auto;

    margin:
      -25px 18px 0;

    max-width: none;
  }

  .carousel-header {
    align-items: flex-start;

    flex-direction: column;
  }

  .product-carousel {
    grid-auto-columns: 86%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-box,
  .featured-grid {
    padding: 28px;
  }

  .city-card {
    padding: 28px;
  }

  .colombia-coverage {
    padding: 28px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;

    padding: 12px 18px;

    font-size: 14px;
  }

  .age-verification-box,
  .age-modal,
  .age-box {
    padding: 30px 22px;
  }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 640px) {

  .compliance-grid,
  .info-feature-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .compliance-item {
    min-height: auto;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, .08);
  }

  .compliance-item:last-child {
    border-bottom: 0;
  }

  .city-card,
  .policy-card,
  .info-feature {
    padding: 24px;
  }

  .policy-links {
    flex-direction: column;
  }

  .policy-links a {
    justify-content: center;
  }

}


/* =========================================================
   MÓVIL MUY PEQUEÑO
========================================================= */

@media (max-width: 480px) {

  .container {
    width: 90%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;

    grid-template-columns:
      repeat(2, 1fr);

    width: 100%;
  }

  .hero-stats > div {
    border-right: 0;

    padding-right: 0;
  }

  .product-carousel {
    grid-auto-columns: 94%;
  }

  .modal-content {
    padding: 18px;
  }

  .modal-grid {
    gap: 22px;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .contact-box {
    text-align: left;
  }

  .policy-links a {
    width: 100%;
  }

  .age-verification-actions,
  .age-actions {
    flex-direction: column;
  }

  #age-confirm-btn,
  #age-exit-btn {
    width: 100%;
  }

}


/* =========================================================
   REDUCIR MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

}




/* =========================================
   FOOTER
========================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.2fr;
  gap: 42px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 340px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
}

.footer-column a {
  text-decoration: none;
}

.footer-contact-note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================
   AVISO +18 FOOTER
========================================= */

.footer-age-section {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-age-warning {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.footer-age-icon {
  flex: 0 0 66px;

  width: 66px;
  height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid currentColor;
  border-radius: 50%;

  font-size: 20px;
  font-weight: 700;
}

.footer-age-content h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.footer-age-content p {
  margin: 0 0 10px;
  max-width: 900px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-age-content a {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================
   TEXTO LEGAL
========================================= */

.footer-legal {
  padding-top: 18px;
  padding-bottom: 28px;
}

.footer-legal p {
  margin: 0;
  max-width: 980px;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.55;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-copy-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-age-warning {
    align-items: flex-start;
  }

  .footer-age-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    font-size: 16px;
  }

  .footer-copy-inner {
    flex-direction: column;
    gap: 6px;
  }

}