/* ============================================
   PRESENTTO — Centrado · Montserrat · Iluminación
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ----- Variables ----- */
:root {
  --primary: #f57c00;
  --primary-dark: #e65100;
  --primary-light: #ffb74d;
  --primary-bg: rgba(245, 124, 0, 0.1);
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #777;
  --border: rgba(0, 0, 0, 0.07);

  --font: 'Montserrat', sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-orange: 0 6px 24px rgba(245, 124, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(245, 124, 0, 0.15);
  --glow-orange: 0 0 30px rgba(245, 124, 0, 0.25);
  --glow-soft: 0 0 60px rgba(245, 124, 0, 0.08);
  --transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 68px;

  /* Spacing system */
  --section-spacing-desktop: 3rem;
  --section-spacing-mobile: 2rem;
  --gap-sm: 0.5rem;
  --gap-md: 0.75rem;
  --gap-lg: 1rem;
  --gap-xl: 1.25rem;
}

/* ----- Reset ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* === ILUMINACIÓN EXÓTICA — Ambient Light Leaks === */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(245, 124, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientLightA 6s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 183, 77, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientLightB 5s ease-in-out infinite alternate;
}

@keyframes ambientLightA {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(5%, 3%) scale(1.1); opacity: 1; }
  100% { transform: translate(-3%, -2%) scale(0.95); opacity: 0.7; }
}

@keyframes ambientLightB {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%  { transform: translate(-4%, -5%) scale(1.15); opacity: 0.8; }
  100% { transform: translate(3%, 4%) scale(0.9); opacity: 0.5; }
}

/* Light rays — rayos de luz con barrido fluido */
.light-ray {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}
.light-ray--1 {
  top: 0%;
  left: -40%;
  width: 80%;
  height: 120vh;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(245, 124, 0, 0.12) 25%,
    rgba(255, 183, 77, 0.18) 40%,
    rgba(245, 124, 0, 0.10) 55%,
    transparent 75%
  );
  transform: rotate(32deg) translateX(-20%);
  animation: raySweep1 5s ease-in-out infinite alternate;
}
.light-ray--2 {
  top: -10%;
  right: -30%;
  width: 70%;
  height: 120vh;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(245, 124, 0, 0.10) 20%,
    rgba(255, 183, 77, 0.15) 40%,
    rgba(245, 124, 0, 0.08) 60%,
    transparent 80%
  );
  transform: rotate(-38deg) translateX(20%);
  animation: raySweep2 6s ease-in-out infinite alternate;
}
.light-ray--3 {
  top: -20%;
  left: -20%;
  width: 55%;
  height: 130vh;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(255, 183, 77, 0.08) 25%,
    rgba(245, 124, 0, 0.15) 45%,
    rgba(255, 183, 77, 0.07) 65%,
    transparent 85%
  );
  transform: rotate(50deg) translateY(-10%);
  animation: raySweep3 7s ease-in-out infinite alternate;
}
.light-ray--4 {
  top: 5%;
  right: -25%;
  width: 60%;
  height: 110vh;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(245, 124, 0, 0.07) 30%,
    rgba(255, 183, 77, 0.12) 50%,
    rgba(245, 124, 0, 0.07) 70%,
    transparent 90%
  );
  transform: rotate(-28deg) translateX(10%);
  animation: raySweep4 4.5s ease-in-out infinite alternate;
}

@keyframes raySweep1 {
  0%   { opacity: 0.3; transform: rotate(32deg) translateX(-30%); }
  50%  { opacity: 0.9; transform: rotate(32deg) translateX(5%); }
  100% { opacity: 0.4; transform: rotate(32deg) translateX(-15%); }
}
@keyframes raySweep2 {
  0%   { opacity: 0.2; transform: rotate(-38deg) translateX(30%); }
  50%  { opacity: 0.8; transform: rotate(-38deg) translateX(-5%); }
  100% { opacity: 0.3; transform: rotate(-38deg) translateX(15%); }
}
@keyframes raySweep3 {
  0%   { opacity: 0.1; transform: rotate(50deg) translateY(-20%); }
  50%  { opacity: 0.7; transform: rotate(50deg) translateY(10%); }
  100% { opacity: 0.2; transform: rotate(50deg) translateY(-10%); }
}
@keyframes raySweep4 {
  0%   { opacity: 0.15; transform: rotate(-28deg) translateX(20%); }
  50%  { opacity: 0.7;  transform: rotate(-28deg) translateX(-10%); }
  100% { opacity: 0.25; transform: rotate(-28deg) translateX(10%); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Capa de contenido sobre iluminación */
main, .section, .footer { position: relative; z-index: 1; }
.promo-free { z-index: 1; }

/* ----- Layout centrado ----- */
.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 2.5rem 0;
}
@media (min-width: 600px) { .section { padding: 3rem 0; } }
.section--gray { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.section__title {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.3rem;
  text-align: center;
}
.section--dark .section__title { color: var(--white); }

.section__sub {
  font-size: 0.92rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section__desc {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section__sub { color: rgba(255,255,255,0.6); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.15s ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo-img { height: 44px; width: auto; display: block; }
@media (min-width: 768px) { .header__logo-img { height: 52px; } }

/* Nav toggle */
.nav-toggle {
  display: flex; flex-direction: column; gap: 0.3125rem;
  background: none; border: none; cursor: pointer;
  padding: 6px; -webkit-tap-highlight-color: transparent;
}
.nav-toggle__bar {
  display: block; width: 24px; height: 2.5px;
  background: #222; border-radius: 2px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Nav */
.nav {
  position: fixed; top: var(--header-h); left: 0; width: 100%;
  background: #fff; border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; transition: max-height 0.2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nav--open { max-height: 280px; }
.nav__list { list-style: none; padding: 0.5rem 0; }
.nav__link {
  display: block; padding: 0.7rem 24px;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color 0.1s ease;
}
.nav__link:hover { color: var(--primary); }
.nav__link--active { color: var(--primary); }
.nav__cta {
  color: var(--primary); font-weight: 800;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav {
    position: static; max-height: none !important; overflow: visible;
    width: auto; border: none; box-shadow: none;
  }
  .nav__list { display: flex; align-items: center; gap: 0.8rem; padding: 0; }
  .nav__link { padding: 0.4rem 0.8rem; font-size: 0.88rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 5rem 0 1.5rem;
  text-align: center;
}
@media (min-width: 600px) { .hero { padding: 6rem 0 2rem; } }
.hero__logos {
  display: flex; flex-direction: column;
  align-items: center;
  margin-bottom: 0.2rem;
}
.hero__logo-name {
  width: min(420px, 82vw);
  height: auto; display: block;
  animation: logoDropIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero__logo-slogan {
  width: min(460px, 86vw);
  height: auto; display: block;
  margin-top: -40px;
  animation: logoDropIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards;
  opacity: 0;
}
@media (min-width: 768px) {
  .hero { padding: 7rem 0 3rem; }
  .hero__logo-name { width: min(640px, 80vw); }
  .hero__logo-slogan { width: min(700px, 85vw); margin-top: -60px; }
}

.hero__price {
  font-size: 1.1rem; font-weight: 600; color: var(--text-light);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}
.hero__price strong { color: var(--dark); }
.hero__price span { font-weight: 400; font-size: 0.9rem; color: #999; }

.hero__sub {
  font-size: 0.95rem; font-weight: 600; color: var(--primary);
  background: rgba(245,124,0,0.07);
  display: inline-block; padding: 4px 16px; border-radius: 20px;
  margin: 0.5rem 0 1rem; letter-spacing: 0.02em;
}
.hero__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; flex-wrap: wrap; margin-top: 0.8rem;
}

@keyframes logoDropIn {
  0%   { opacity: 0; transform: scale(0.85) translateY(-20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.8rem; font-family: var(--font);
  font-size: 0.88rem; font-weight: 700; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  text-decoration: none; transition: all 0.15s ease;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 8px 28px rgba(245,124,0,0.4); }

.btn--whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover { background: #1da851; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.btn--ghost {
  background: transparent; color: #888;
  border: 1.5px solid rgba(0,0,0,0.1);
}
.btn--ghost:hover { background: #f5f5f5; color: #333; border-color: #bbb; }

.btn--white {
  background: #fff; color: var(--primary); font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn--white:hover { background: var(--primary); color: #fff; box-shadow: var(--shadow-orange); }

/* ============================================
   PROMO FREE
   ============================================ */
.promo-free {
  background: linear-gradient(135deg, var(--primary) 0%, #e65100 100%);
  padding: 2.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
@media (min-width: 600px) { .promo-free { padding: 3rem 0; } }
.promo-free::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%); animation: promoShimmer 2s ease-in-out infinite;
}
@keyframes promoShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.promo-free__title {
  font-size: 1.35rem; font-weight: 900; color: #fff;
  margin-bottom: 0.3rem; letter-spacing: 0.01em;
}
.promo-free__text {
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
  margin-bottom: 1rem; font-weight: 500;
}
@media (min-width: 600px) { .promo-free__title { font-size: 1.6rem; } }

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 420px; margin: 0 auto;
}
@media (min-width: 600px) { .steps { gap: 1rem; } }
.step {
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1rem;
  box-shadow: var(--shadow); text-align: left;
  display: flex; align-items: flex-start; gap: 0.75rem;
  transition: all var(--transition);
}
@media (min-width: 600px) { .step { padding: 1.2rem 1.4rem; gap: 1rem; } }
.step:hover {
  box-shadow: var(--shadow), var(--glow-soft);
  transform: translateX(4px);
}
.step__num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%; background: var(--primary-bg);
  color: var(--primary); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step__title { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.step__text { font-size: 0.82rem; color: var(--text-light); line-height: 1.4; }

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
  max-width: 500px; margin: 0 auto;
}
@media (min-width: 600px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .benefits { grid-template-columns: 1fr 1fr 1fr; } }
.benefit {
  background: var(--white); border-radius: var(--radius);
  padding: 0.9rem 0.7rem; box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}
@media (min-width: 600px) { .benefit { padding: 1.1rem 0.8rem; } }
.benefit:hover {
  box-shadow: var(--shadow), var(--glow-soft);
  transform: translateY(-3px);
}
.benefit__title { font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 0.15rem; }
.benefit__text { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   SUB-CARD
   ============================================ */
.sub-card {
  background: #fff; border-radius: 18px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  max-width: 100%; margin: 0 auto;
  text-align: center; position: relative;
  transition: all var(--transition);
}
@media (min-width: 600px) { .sub-card { max-width: 380px; padding: 2rem 1.5rem 1.8rem; } }
.sub-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.10), var(--shadow-glow);
}
.sub-card__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 16px; border-radius: 20px;
}
.sub-card__price {
  font-size: 2rem; font-weight: 900; color: var(--dark);
  margin-bottom: 1.2rem;
}
.sub-card__price small { font-size: 0.85rem; font-weight: 500; color: #999; }
.sub-card__features {
  list-style: none; text-align: left;
  margin-bottom: 1.5rem;
}
.sub-card__features li {
  padding: 0.45rem 0; font-size: 0.85rem; color: #444;
  display: flex; align-items: center; gap: 0.5rem;
}
.sub-card__features li::before {
  content: ''; display: inline-block;
  width: 10px; height: 6px; min-width: 10px;
  border-left: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: rotate(-45deg) translateY(-1px);
}

/* ============================================
   FORMULARIO
   ============================================ */
.form {
  max-width: 100%; padding: 0 1rem; margin: 0 auto; text-align: left;
}
@media (min-width: 600px) { .form { max-width: 480px; padding: 0; } }
.form__group {
  margin-bottom: 1rem;
}
.form__label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: #444; margin-bottom: 0.3rem;
}
.form__input,
.form__textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  font-family: var(--font); font-size: 0.88rem;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius-sm);
  background: #fff; transition: border-color 0.2s ease;
  outline: none;
}
.form__input:focus,
.form__textarea:focus { border-color: var(--primary); }
.form__input--error { border-color: #e53935 !important; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__error {
  font-size: 0.75rem; color: #e53935; margin-top: 4px;
  display: none;
}
.form__error--visible { display: block; }
.form__success {
  display: none; text-align: center;
  padding: 1.5rem; background: rgba(76,175,80,0.06);
  border-radius: var(--radius);
}
.form__success--visible { display: block; }
.form__success__title {
  font-size: 1.1rem; font-weight: 800; color: #2e7d32;
  margin-bottom: 0.3rem;
}
.form__success__text { font-size: 0.85rem; color: #555; }

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 999; width: 54px; height: 54px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.15s ease;
  animation: whatsappPulse 1.25s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: none;
}
.whatsapp-float__icon { width: 26px; height: 26px; display: block; }
@media (min-width: 768px) { .whatsapp-float { width: 60px; height: 60px; bottom: 28px; right: 28px; } }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); transform: scale(1); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); transform: scale(1.04); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a1a; color: rgba(255,255,255,0.6);
  padding: 2.5rem 0 1.5rem; text-align: center;
  position: relative; z-index: 1;
}
.footer__grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 600px) { .footer__grid { flex-direction: row; justify-content: center; gap: 3rem; } }

.footer__brand {
  font-size: 1.15rem; font-weight: 700; color: #fff;
}
.footer__brand span { color: var(--primary); }
.footer__heading {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 0.6rem;
}
.footer__list {
  list-style: none; display: flex; flex-direction: column; gap: 0.3rem;
  align-items: center;
}
@media (min-width: 600px) { .footer__list { align-items: center; } }
.footer__list a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; transition: color 0.1s ease;
}
.footer__list a:hover { color: #fff; }
.footer__bottom {
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem;
}

/* ============================================
   NOSOTROS — Proceso de entrega
   ============================================ */
.proceso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .proceso-grid { grid-template-columns: 1fr 1fr; }
}

.proceso-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.15s ease;
}

.proceso-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07), var(--glow-soft);
  transform: translateY(-3px);
  border-color: rgba(245,124,0,0.15);
}

.proceso-card__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(245,124,0,0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.proceso-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.proceso-card__text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   NOSOTROS — Política de pago
   ============================================ */
.politica-card {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.politica-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.15s ease;
}

.politica-card__item:hover {
  border-color: rgba(245,124,0,0.15);
  box-shadow: 0 4px 16px rgba(245,124,0,0.06);
}

.politica-card__icon {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,124,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.politica-card__content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.politica-card__content p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   NOSOTROS — Filosofía de negocio
   ============================================ */
.filosofia-grid {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filosofia-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.15s ease;
  position: relative;
}

.filosofia-card:hover {
  border-color: rgba(245,124,0,0.18);
  box-shadow: 0 6px 24px rgba(245,124,0,0.07);
  transform: translateY(-2px);
}

.filosofia-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.filosofia-card__icon--alert {
  background: rgba(229,57,53,0.10);
  color: #e53935;
}

.filosofia-card__icon--remove {
  background: rgba(245,124,0,0.10);
  color: #f57c00;
}

.filosofia-card__icon--whatsapp {
  background: rgba(37,211,102,0.10);
  color: #25d366;
}

.filosofia-card__icon--flex {
  background: rgba(33,150,243,0.10);
  color: #2196f3;
}

.filosofia-card__icon--save {
  background: rgba(46,125,50,0.10);
  color: #2e7d32;
}

.filosofia-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.filosofia-card__text {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.filosofia-card__text strong {
  color: var(--dark);
  font-weight: 700;
}

.filosofia-footer {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.filosofia-footer__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.filosofia-footer__text strong {
  color: var(--dark);
}

@media (min-width: 768px) {
  .filosofia-card {
    padding: 1.6rem 2rem;
  }
  .filosofia-card__title {
    font-size: 1rem;
  }
  .filosofia-card__text {
    font-size: 0.88rem;
  }
  .filosofia-footer__text {
    font-size: 0.95rem;
  }
}

/* --- Recuadro de énfasis --- */
.filosofia-box {
  max-width: 640px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #fff8f0 0%, #fff5ee 100%);
  border: 1px solid rgba(245,124,0,0.15);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 16px rgba(245,124,0,0.04);
}

.filosofia-box__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f57c00;
  background: rgba(245,124,0,0.10);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

.filosofia-box__lead {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0 0 1.2rem;
}

.filosofia-box__lead strong {
  color: var(--dark);
}

.filosofia-box__cols {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filosofia-box__col {
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.filosofia-box__col--si {
  background: rgba(46,125,50,0.04);
  border: 1px solid rgba(46,125,50,0.10);
}

.filosofia-box__col--no {
  background: rgba(229,57,53,0.03);
  border: 1px solid rgba(229,57,53,0.08);
}

.filosofia-box__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.filosofia-box__col--si .filosofia-box__col-title { color: #2e7d32; }
.filosofia-box__col--no .filosofia-box__col-title { color: #e53935; }

.filosofia-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filosofia-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-light);
}

.filosofia-box__list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.filosofia-box__list li strong {
  color: var(--dark);
  font-weight: 600;
}

.filosofia-box__foot {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-light);
  text-align: center;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,124,0,0.10);
}

.filosofia-box__foot strong {
  color: var(--dark);
}

@media (min-width: 768px) {
  .filosofia-box {
    padding: 2rem 2rem;
  }
  .filosofia-box__cols {
    flex-direction: row;
  }
  .filosofia-box__col {
    flex: 1;
  }
  .filosofia-box__lead {
    font-size: 0.93rem;
  }
  .filosofia-box__list li {
    font-size: 0.85rem;
  }
  .filosofia-box__foot {
    font-size: 0.9rem;
  }
}

/* ============================================
   MAPA
   ============================================ */
#mapa-presentto {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  #mapa-presentto { height: 460px; }
}

/* Popup de Leaflet */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

.leaflet-popup-content {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
}

/* ============================================
   LISTA EMPRESAS AFILIADAS
   ============================================ */
.afiliados-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .afiliados-grid { grid-template-columns: 1fr 1fr; }
}

.afiliado-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.afiliado-item:hover {
  border-color: rgba(245, 124, 0, 0.25);
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.10);
  transform: translateY(-2px);
}

.afiliado-item:active {
  transform: translateY(0);
}

.afiliado-item__marker {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: #f57c00;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #f57c00;
}

.afiliado-item__info {
  flex: 1;
  min-width: 0;
}

.afiliado-item__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.afiliado-item__category {
  font-size: 0.78rem;
  color: #f57c00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.afiliado-item__address {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.3;
  margin-top: 2px;
}

/* ============================================
   MODAL AFILIADO
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  padding: 24px;
}

.modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { transform: scale(0.92) translateY(12px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.modal__close:hover {
  background: #eee;
  color: #333;
}

.modal__content {
  text-align: center;
}

.modal__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f57c00;
  background: rgba(245, 124, 0, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 6px 0;
}

.modal__address {
  font-size: 0.82rem;
  color: #999;
  margin: 0 0 14px 0;
  line-height: 1.4;
}

.modal__desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 1.2rem 0;
}

/* ---- Modal actions (botones) ---- */
.modal__actions {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal__actions .btn {
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  gap: 0.125rem;
}

/* ============================================
   SELECTOR DESPLEGABLE
   ============================================ */
.selector-afiliado {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.selector-afiliado__select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  border: 2px solid rgba(245, 124, 0, 0.15);
  border-radius: 14px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f57c00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.selector-afiliado__select:hover {
  border-color: rgba(245, 124, 0, 0.35);
}

.selector-afiliado__select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.12);
}

.selector-afiliado__select option {
  padding: 8px;
  font-weight: 500;
}

/* ============================================
   CARD DE AFILIADO (dropdown result)
   ============================================ */
.afiliado-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.8rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  display: none;
  animation: cardIn 0.35s ease;
}

.afiliado-card--visible {
  display: block;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.afiliado-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f57c00;
  background: rgba(245, 124, 0, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.afiliado-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.afiliado-card__address {
  font-size: 0.82rem;
  color: #999;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.afiliado-card__desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 1.2rem 0;
}

.afiliado-card__actions {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

.afiliado-card__actions .btn {
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  gap: 0.125rem;
}

/* ============================================
   AVISO COOKIES
   ============================================ */
#aviso-cookies {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 32px);
  max-width: 400px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 16px 20px 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#aviso-cookies.oculto {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

#aviso-cookies p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.btn-cookies {
  display: inline-block;
  padding: 8px 24px;
  margin: 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #f57c00;
  color: #fff;
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.3);
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent;
}

.btn-cookies:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.btn-cookies:active {
  transform: translateY(0);
}

.btn-cookies--sec {
  background: transparent;
  color: #888;
  box-shadow: none;
  border: 1.5px solid rgba(0,0,0,0.08);
}

.btn-cookies--sec:hover {
  background: #f5f5f5;
  color: #333;
  border-color: #aaa;
  box-shadow: none;
}

@media (max-width: 480px) {
  #aviso-cookies {
    bottom: 76px;
    padding: 14px 16px 12px;
  }
  #aviso-cookies p {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .btn-cookies {
    padding: 7px 18px;
    font-size: 0.72rem;
  }
}

/* ============================================
   MEJORAS ESTÉTICAS — Progress, Volver arriba, Ripple, etc.
   ============================================ */

/* --- 1. Barra de progreso de lectura --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* --- 2. Botón volver arriba --- */
.back-to-top {
  position: fixed;
  bottom: 82px;
  right: 20px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

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

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(245,124,0,0.3);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 96px;
    right: 28px;
    width: 48px;
    height: 48px;
  }
}

/* --- 3. Stagger entrance — animación escalonada --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.stagger-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.stagger-visible > *:nth-child(1) { transition-delay: 0.00s; }
.stagger-children.stagger-visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.stagger-visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.stagger-visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.stagger-visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.stagger-visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.stagger-visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.stagger-visible > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children.stagger-visible > *:nth-child(9) { transition-delay: 0.64s; }
.stagger-children.stagger-visible > *:nth-child(10) { transition-delay: 0.72s; }
.stagger-children.stagger-visible > *:nth-child(11) { transition-delay: 0.80s; }
.stagger-children.stagger-visible > *:nth-child(12) { transition-delay: 0.88s; }
.stagger-children.stagger-visible > *:nth-child(13) { transition-delay: 0.96s; }
.stagger-children.stagger-visible > *:nth-child(14) { transition-delay: 1.04s; }
.stagger-children.stagger-visible > *:nth-child(15) { transition-delay: 1.12s; }
.stagger-children.stagger-visible > *:nth-child(16) { transition-delay: 1.20s; }
.stagger-children.stagger-visible > *:nth-child(17) { transition-delay: 1.28s; }
.stagger-children.stagger-visible > *:nth-child(18) { transition-delay: 1.36s; }
.stagger-children.stagger-visible > *:nth-child(19) { transition-delay: 1.44s; }
.stagger-children.stagger-visible > *:nth-child(20) { transition-delay: 1.52s; }

/* --- 4. Nav link subrayado deslizante (desktop) --- */
@media (min-width: 768px) {
  .nav__link {
    position: relative;
    padding-bottom: 2px;
  }
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease;
    transform: translateX(-50%);
  }
  .nav__link:hover::after,
  .nav__link--active::after {
    width: 70%;
  }
}

/* --- 5. Ripple en botones --- */
.btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* --- 6. Scrollbar personalizada --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
}

/* --- 7. Contador animado (contador) --- */
.contador {
  display: inline-block;
}

/* --- 8. Focus glow en formularios --- */
.form__input:focus,
.form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,124,0,0.12);
}

/* --- 9. Footer link línea animada --- */
.footer__list a {
  position: relative;
  padding-bottom: 1px;
}
.footer__list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width 0.25s ease;
}
.footer__list a:hover::after {
  width: 100%;
}

/* --- 10. Skeleton placeholder para mapa --- */
#mapa-presentto:empty {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
  border-radius: 16px;
  min-height: 380px;
}

@keyframes skeletonPulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   DEMOS CARDS
   ============================================ */
.demos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .demos-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 780px;
  }
}

@media (min-width: 960px) {
  .demos-grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 960px;
  }
}

.demo-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.2rem 1.4rem;
  box-shadow: 0 3px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.demo-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), var(--glow-soft);
  transform: translateY(-4px);
  border-color: rgba(245,124,0,0.12);
}

.demo-card:hover::before {
  opacity: 1;
}

.demo-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,124,0,0.7);
  background: rgba(245,124,0,0.07);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.demo-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245,124,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.demo-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.demo-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.demo-card__desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 12px 0;
  flex: 1;
}

.demo-card__btn {
  font-size: 0.82rem;
  padding: 0.55rem 1.4rem;
  width: 100%;
}

@media (max-width: 480px) {
  .demo-card {
    padding: 1.2rem 1rem 1.2rem;
  }
  .demo-card__title {
    font-size: 0.92rem;
  }
  .demo-card__desc {
    font-size: 0.78rem;
  }
}

/* ============================================
   ANIMACIONES GLOBALES
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Btn base hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

/* ============================================
   🚀 ANIMACIONES 3D — PRESENTTO PREMIUM
   ============================================ */

/* ---- New Variables ---- */
:root {
  --font-display: 'Playfair Display', serif;
  --glow-intensive: 0 0 60px rgba(245, 124, 0, 0.4);
}

/* ---- 1. 3D Parallax Hero ---- */
.hero {
  perspective: 800px;
  transform-style: preserve-3d;
}

.hero__logos {
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__logo-name {
  animation: logoDropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             heroFloat 4s ease-in-out 1s infinite;
}

.hero__logo-slogan {
  animation: logoDropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards,
             heroFloat 4s ease-in-out 1.5s infinite;
}

.light-ray {
  will-change: transform;
}

/* ---- 2. Section 3D Reveal ---- */
.reveal-3d {
  opacity: 0;
  transform: perspective(800px) rotateX(10deg) translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-3d.revealed {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg) translateY(0);
}

/* ---- 3. Progress Bar Glow ---- */
.progress-bar {
  box-shadow: 0 0 8px rgba(245, 124, 0, 0.4), 0 0 20px rgba(245, 124, 0, 0.2);
  animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
  0% { box-shadow: 0 0 6px rgba(245, 124, 0, 0.3), 0 0 16px rgba(245, 124, 0, 0.15); }
  100% { box-shadow: 0 0 14px rgba(245, 124, 0, 0.55), 0 0 28px rgba(245, 124, 0, 0.3); }
}

/* ---- 4. Tilt 3D Cards ---- */
.tilt-card {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

/* ---- 5. Particles 3D ---- */
#particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-35vh) translateX(15px) scale(1.15);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-55vh) translateX(-10px) scale(0.85);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-25vh) translateX(20px) scale(1.05);
    opacity: 0.6;
  }
}

/* ---- 6. Spotlight Effect ---- */
.spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform, opacity;
}

.spotlight--visible {
  opacity: 1;
}

@media (min-width: 768px) {
  .spotlight {
    width: 700px;
    height: 700px;
  }
}

/* ---- 7. Wave Separators ---- */
.section--gray {
  position: relative;
}

.section--gray::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,10 C200,35 400,0 600,20 C800,40 1000,5 1200,20 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---- 8. Text Gradients ---- */
.section__tag {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step__num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.step__num::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bg), rgba(245, 124, 0, 0.18));
  z-index: -1;
}

/* ---- 9. Button Glow 3D ---- */
.btn--primary {
  z-index: 1;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}

.btn--primary:hover::before {
  opacity: 1;
  animation: btnGlowPulse 1.5s ease-in-out infinite alternate;
}

@keyframes btnGlowPulse {
  0% { opacity: 0.5; filter: blur(10px); }
  100% { opacity: 1; filter: blur(18px); }
}

/* ---- 10. Nav Underline 3D ---- */
@media (min-width: 768px) {
  .nav__link::after {
    height: 3px;
    box-shadow: 0 0 6px rgba(245, 124, 0, 0.35);
  }

  .nav__link:hover::after,
  .nav__link--active::after {
    width: 80%;
  }
}

/* ---- 11. Contador Glow ---- */
.contador--counting {
  animation: contadorGlow 0.3s ease-in-out infinite alternate;
}

@keyframes contadorGlow {
  0% { text-shadow: 0 0 4px rgba(245, 124, 0, 0.2); }
  100% { text-shadow: 0 0 20px rgba(245, 124, 0, 0.6), 0 0 40px rgba(245, 124, 0, 0.15); }
}

/* ---- 12. Entrance Enhancement ---- */
.animate-on-scroll {
  transform: translateY(30px) scale(0.97);
  filter: blur(2px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ---- 13. Section Titles Display Font ---- */
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-3d { opacity: 1 !important; transform: none !important; }
  .tilt-card { transform: none !important; }
  .animate-on-scroll { opacity: 1 !important; transform: none !important; filter: none !important; }
  .contador--counting { animation: none !important; text-shadow: none !important; }
  .spotlight { display: none !important; }
  #particles-container { display: none !important; }
  .section--gray::before { display: none !important; }
  .step__num::before { display: none !important; }
  .btn--primary::before { display: none !important; }
  .section__tag { background: none !important; -webkit-text-fill-color: var(--primary) !important; color: var(--primary) !important; }
  .step__num { background: none !important; -webkit-text-fill-color: var(--primary) !important; color: var(--primary) !important; }
}

/* ============================================
   PRESENTTO PREMIUM SYSTEM V2
   Visual layer only: preserves content, flow and business logic.
   ============================================ */

:root {
  --primary: #ff7a1a;
  --primary-dark: #e65e00;
  --primary-light: #ffb066;
  --accent-cyan: #46d5ff;
  --accent-green: #7cd992;
  --ink: #111318;
  --ink-soft: #2c3038;
  --muted: #6e7480;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-tint: rgba(255, 250, 244, 0.82);
  --glass-border: rgba(17, 19, 24, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.72);
  --line-soft: rgba(17, 19, 24, 0.07);
  --shadow-premium: 0 18px 60px rgba(17, 19, 24, 0.10);
  --shadow-deep: 0 34px 90px rgba(17, 19, 24, 0.15);
  --shadow-color: 0 18px 54px rgba(255, 122, 26, 0.18);
  --radius: 8px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --transition: 520ms cubic-bezier(0.16, 1, 0.3, 1);
  --spring: 760ms cubic-bezier(0.18, 0.9, 0.16, 1);
  --cursor-x: 50vw;
  --cursor-y: 30vh;
  --scroll-velocity: 0;
  --scroll-progress: 0;
}

html {
  background: #fbfbfc;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 122, 26, 0.055), transparent 26%, rgba(70, 213, 255, 0.035) 54%, transparent 78%),
    linear-gradient(180deg, #fbfbfc 0%, #fff8f1 34%, #fbfcff 72%, #ffffff 100%);
  letter-spacing: 0;
}

body::before {
  width: 100%;
  height: 100%;
  inset: 0;
  top: 0;
  left: 0;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 24, 0.02) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0%, rgba(255, 122, 26, 0.055) 38%, transparent 62%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  animation: premiumGridDrift 22s linear infinite;
}

body::after {
  width: 100%;
  height: 100%;
  inset: 0;
  bottom: auto;
  right: auto;
  opacity: 0.68;
  background:
    conic-gradient(from 140deg at 72% 18%, transparent 0deg, rgba(255, 122, 26, 0.08) 42deg, transparent 92deg, rgba(70, 213, 255, 0.055) 142deg, transparent 212deg),
    linear-gradient(160deg, transparent 0%, rgba(124, 217, 146, 0.035) 44%, transparent 76%);
  mix-blend-mode: multiply;
  animation: premiumLightDrift 18s ease-in-out infinite alternate;
}

@keyframes premiumGridDrift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 72px 72px, -72px 36px, 0 0; }
}

@keyframes premiumLightDrift {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.48; }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.03); opacity: 0.76; }
}

.light-ray {
  opacity: 0.42;
  filter: blur(0.4px) saturate(1.05);
  transform-origin: center;
}

.light-ray--1,
.light-ray--3 {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 122, 26, 0.10) 40%, rgba(70, 213, 255, 0.055) 50%, transparent 68%);
}

.light-ray--2,
.light-ray--4 {
  background: linear-gradient(65deg, transparent 0%, rgba(17, 19, 24, 0.035) 38%, rgba(255, 122, 26, 0.075) 52%, transparent 74%);
}

.container {
  max-width: 1120px;
  padding: 0 clamp(20px, 4vw, 44px);
}

.section {
  padding: clamp(4.4rem, 9vw, 7.5rem) 0;
  isolation: isolate;
}

.section--gray {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 247, 238, 0.72)),
    linear-gradient(90deg, rgba(255, 122, 26, 0.055), transparent 42%, rgba(70, 213, 255, 0.035));
}

.section--gray::before {
  display: none;
}

.section__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  color: var(--ink);
  text-shadow: none;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section__desc,
.section__sub {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.72;
  max-width: 720px;
}

.header {
  height: 72px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(17, 19, 24, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.62) inset, 0 12px 34px rgba(17, 19, 24, 0.045);
  backdrop-filter: blur(26px) saturate(1.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.18);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.06), transparent);
  opacity: calc(0.25 + (var(--scroll-velocity) * 0.08));
}

.header__logo-img {
  height: 48px;
  filter: drop-shadow(0 10px 22px rgba(255, 122, 26, 0.18));
  transition: transform var(--spring), filter var(--transition);
}

.header__logo:hover .header__logo-img {
  transform: translateY(-1px) scale(1.035);
  filter: drop-shadow(0 16px 30px rgba(255, 122, 26, 0.25));
}

.nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__link {
  color: rgba(17, 19, 24, 0.72);
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--ink);
  background: rgba(255, 122, 26, 0.08);
}

.nav__cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #2f333d 52%, var(--primary));
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.16);
}

.nav__cta:hover,
.nav__cta.nav__link--active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #2f333d 44%, var(--primary));
}

@media (min-width: 768px) {
  .nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__link {
    padding: 0.52rem 0.9rem;
  }

  .nav__link::after {
    display: none;
  }
}

.hero {
  min-height: min(790px, 96vh);
  display: grid;
  place-items: center;
  padding: clamp(7.5rem, 14vw, 10rem) 0 clamp(4.6rem, 8vw, 7.2rem);
  overflow: hidden;
  position: relative;
  perspective: 1200px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 24, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 122, 26, 0.11), transparent 32%, rgba(70, 213, 255, 0.055) 74%, transparent);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  mask-image: linear-gradient(180deg, black 0%, black 74%, transparent 100%);
  opacity: 0.78;
  transform: translate3d(0, calc(var(--scroll-progress) * 34px), 0);
  animation: premiumHeroGrid 20s linear infinite;
}

.hero::after {
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.86) 0, rgba(255, 122, 26, 0.17) 11rem, rgba(70, 213, 255, 0.075) 18rem, transparent 31rem),
    conic-gradient(from 180deg at 50% 48%, rgba(255, 122, 26, 0.11), transparent 92deg, rgba(70, 213, 255, 0.07), transparent 196deg, rgba(124, 217, 146, 0.05), transparent);
  mix-blend-mode: multiply;
  opacity: 0.72;
  transform: translate3d(0, calc(var(--scroll-progress) * -22px), 0);
}

@keyframes premiumHeroGrid {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 64px 32px, -32px 64px, 0 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  transform-style: preserve-3d;
}

.hero .container::before,
.hero .container::after {
  content: '';
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero .container::before {
  top: -42px;
  width: min(820px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.48), rgba(70, 213, 255, 0.26), transparent);
  box-shadow: 0 0 36px rgba(255, 122, 26, 0.24);
  animation: premiumScanLine 5.8s ease-in-out infinite;
}

.hero .container::after {
  bottom: -52px;
  width: min(620px, 82vw);
  height: 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent),
    linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.10), transparent);
  border: 1px solid rgba(255, 255, 255, 0.42);
  filter: blur(0.2px);
  transform: translateX(-50%) rotateX(72deg);
  transform-origin: top;
  opacity: 0.62;
}

@keyframes premiumScanLine {
  0%, 100% { opacity: 0.28; transform: translateX(-50%) scaleX(0.68); }
  50% { opacity: 0.92; transform: translateX(-50%) scaleX(1); }
}

.hero__logos {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(17, 19, 24, 0.10));
}

.hero__logo-name {
  width: min(680px, 86vw);
  transform: translateZ(48px);
}

.hero__logo-slogan {
  width: min(730px, 90vw);
  transform: translateZ(28px);
}

.hero__price,
.hero__sub {
  position: relative;
  z-index: 3;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(17, 19, 24, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.hero__price {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
}

.hero__price strong {
  color: var(--ink);
}

.hero__sub {
  border-radius: 999px;
  color: var(--primary-dark);
}

.hero__actions {
  gap: 0.85rem;
  position: relative;
  z-index: 3;
}

.btn,
.btn-cookies,
.selector-afiliado__select,
.back-to-top,
.whatsapp-float {
  transition: transform var(--spring), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.btn {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 32px rgba(17, 19, 24, 0.08);
}

.btn:hover {
  transform: translateY(-3px) scale(1.012);
}

.btn:active,
.btn.premium-pressed {
  transform: translateY(0) scale(0.965);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #ff9a3d 52%, var(--primary-dark));
  box-shadow: 0 16px 42px rgba(255, 122, 26, 0.30), 0 1px 0 rgba(255, 255, 255, 0.36) inset;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ff8a2d, var(--primary), var(--primary-dark));
  box-shadow: 0 22px 58px rgba(255, 122, 26, 0.38), 0 0 0 7px rgba(255, 122, 26, 0.08);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #20cc60, #14b751);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.26), 0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.btn--ghost,
.btn-cookies--sec {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  border: 1px solid rgba(17, 19, 24, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn--ghost:hover,
.btn-cookies--sec:hover {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-color: rgba(255, 122, 26, 0.20);
}

.btn--white {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.promo-free {
  background:
    linear-gradient(110deg, #14171d 0%, #242832 42%, var(--primary-dark) 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 80px rgba(17, 19, 24, 0.16);
}

.promo-free::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(70, 213, 255, 0.13), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(calc(var(--scroll-velocity) * 2px));
  opacity: 0.52;
}

.promo-free__title {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.step,
.benefit,
.sub-card,
.demo-card,
.proceso-card,
.politica-card__item,
.filosofia-card,
.filosofia-box,
.filosofia-footer,
.info-card,
.form,
.afiliado-card,
.modal,
.contact-stack > div,
#mapa-presentto {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium), 0 1px 0 rgba(255, 255, 255, 0.70) inset;
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.premium-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-z: 0px;
  --glow-x: 50%;
  --glow-y: 30%;
  position: relative;
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, var(--tilt-z));
  transform-style: preserve-3d;
  will-change: transform;
}

.premium-tilt::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: var(--tilt-glow, 0);
  transition: opacity 260ms ease;
}

.premium-tilt > * {
  position: relative;
  z-index: 1;
}

.premium-tilt:hover {
  box-shadow: var(--shadow-deep), var(--shadow-color);
}

.step:hover,
.benefit:hover,
.sub-card:hover,
.demo-card:hover,
.proceso-card:hover,
.politica-card__item:hover,
.filosofia-card:hover,
.info-card:hover {
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px);
}

.steps,
.benefits,
.proceso-grid,
.politica-card,
.filosofia-grid,
.demos-grid {
  perspective: 1200px;
}

.benefits,
.demos-grid {
  gap: clamp(14px, 2vw, 22px);
}

.step__num,
.proceso-card__num {
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.12);
}

.sub-card {
  max-width: 430px;
}

.sub-card__badge,
.demo-card__badge,
.afiliado-card__badge,
.modal__category {
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.10);
  border: 1px solid rgba(255, 122, 26, 0.14);
  color: var(--primary-dark);
}

.demos-grid {
  max-width: 1120px;
}

.demo-card {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.demo-card::before {
  height: 1px;
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.52), rgba(70, 213, 255, 0.32), transparent);
}

.demo-card__mockup {
  width: 100%;
  padding: 16px 16px 0;
}

.demo-preview {
  position: relative;
  min-height: 188px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.92), rgba(34, 38, 48, 0.96)),
    linear-gradient(135deg, rgba(255, 122, 26, 0.28), rgba(70, 213, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 44px rgba(17, 19, 24, 0.16);
  isolation: isolate;
}

.demo-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.56;
  transform: translateY(calc(var(--scroll-velocity) * -0.65px));
}

.demo-preview__desktop,
.demo-preview__tablet,
.demo-preview__phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
}

.demo-preview__desktop {
  left: 8%;
  right: 8%;
  top: 18px;
  height: 132px;
  border-radius: 8px;
}

.demo-preview__desktop::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  z-index: 2;
  background: linear-gradient(90deg, #f0f2f5, #ffffff);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.demo-preview__tablet {
  width: 34%;
  height: 86px;
  right: 8%;
  bottom: 16px;
  border-radius: 7px;
}

.demo-preview__phone {
  width: 18%;
  height: 72px;
  left: 10%;
  bottom: 14px;
  border-radius: 8px;
}

.demo-preview img,
.demo-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.demo-preview__desktop img {
  padding-top: 12px;
}

.demo-preview__live {
  position: absolute;
  inset: 18px 8% auto;
  height: 132px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.demo-preview--live .demo-preview__live {
  opacity: 1;
  transform: scale(1);
}

.demo-card__badge,
.demo-card__icon,
.demo-card__title,
.demo-card__category,
.demo-card__desc,
.demo-card__btn {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.demo-card__badge {
  margin-top: 1.05rem;
}

.demo-card__icon {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.11), rgba(70, 213, 255, 0.07));
  border: 1px solid rgba(255, 122, 26, 0.12);
}

.demo-card__btn {
  margin-bottom: 1.25rem;
}

.form {
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.form__input,
.form__textarea,
.selector-afiliado__select {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) inset;
}

.form__input:focus,
.form__textarea:focus,
.selector-afiliado__select:focus {
  border-color: rgba(255, 122, 26, 0.56);
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.10), 0 12px 28px rgba(17, 19, 24, 0.08);
}

.contact-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  max-width: 900px;
  margin: 0 auto;
}

.contact-stack > div {
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.info-card {
  margin-bottom: 1rem;
}

#mapa-presentto {
  min-height: 440px;
  overflow: hidden;
}

.leaflet-container {
  font-family: var(--font);
}

.modal-overlay {
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  background: rgba(17, 19, 24, 0.38);
}

#aviso-cookies {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
}

.back-to-top,
.whatsapp-float {
  border: 1px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.whatsapp-float {
  animation: premiumFloat 4.2s ease-in-out infinite;
}

@keyframes premiumFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

.progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-green));
}

.premium-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.72;
}

.premium-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.34);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.18);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(var(--ps, 1));
  animation: premiumParticleDrift var(--pd, 12s) ease-in-out infinite alternate;
}

.premium-particle:nth-child(3n) {
  background: rgba(70, 213, 255, 0.28);
  box-shadow: 0 0 18px rgba(70, 213, 255, 0.15);
}

.premium-particle:nth-child(4n) {
  background: rgba(124, 217, 146, 0.24);
}

@keyframes premiumParticleDrift {
  from { transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(var(--ps, 1)); opacity: 0.25; }
  to { transform: translate3d(calc(var(--px, 0) + (var(--scroll-velocity) * 0.9px)), calc(var(--py, 0) - 44px), 0) scale(calc(var(--ps, 1) + 0.45)); opacity: 0.76; }
}

.premium-reveal,
.reveal-3d,
.animate-on-scroll,
.stagger-children > * {
  opacity: 0;
  transform: translate3d(0, 34px, -40px) scale(0.92);
  filter: blur(20px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.premium-reveal.premium-visible,
.reveal-3d.revealed,
.animate-on-scroll.animate-in,
.stagger-children.stagger-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.stagger-children.stagger-visible > *:nth-child(1) { transition-delay: 0.00s; }
.stagger-children.stagger-visible > *:nth-child(2) { transition-delay: 0.06s; }
.stagger-children.stagger-visible > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-children.stagger-visible > *:nth-child(4) { transition-delay: 0.18s; }
.stagger-children.stagger-visible > *:nth-child(5) { transition-delay: 0.24s; }
.stagger-children.stagger-visible > *:nth-child(6) { transition-delay: 0.30s; }
.stagger-children.stagger-visible > *:nth-child(7) { transition-delay: 0.36s; }
.stagger-children.stagger-visible > *:nth-child(8) { transition-delay: 0.42s; }
.stagger-children.stagger-visible > *:nth-child(9) { transition-delay: 0.48s; }
.stagger-children.stagger-visible > *:nth-child(10) { transition-delay: 0.54s; }

@media (min-width: 768px) {
  .contact-stack {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .steps {
    max-width: 760px;
  }

  .benefits {
    max-width: 900px;
  }

  .sub-card {
    max-width: 460px;
  }
}

/* ============================================
   PREGUNTAS FRECUENTES (FAQ)
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.15s ease;
  list-style: none;
}

.faq-item:hover {
  border-color: rgba(245, 124, 0, 0.15);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06), var(--glow-soft);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(245, 124, 0, 0.20);
  background: linear-gradient(135deg, #fff 0%, rgba(245, 124, 0, 0.03) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 124, 0, 0.12) inset;
}

.faq-item__question {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__question::marker {
  color: var(--primary);
}

.faq-item__answer {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0.8rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(245, 124, 0, 0.10);
  animation: faqSlideDown 0.35s ease;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 600px) {
  .faq-item {
    padding: 1.2rem 1.4rem;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  .faq-item__answer {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer {
    animation: none;
  }
}

@media (max-width: 767px) {
  .header {
    height: var(--header-h);
  }

  .hero {
    min-height: auto;
    padding-top: 6.9rem;
  }

  .hero__price {
    flex-direction: column;
    gap: 0.12rem;
  }

  .demo-preview {
    min-height: 170px;
  }

  .demo-card {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero::before,
  .hero::after,
  .premium-ambient,
  .premium-particle,
  .promo-free::before,
  .promo-free::after,
  .light-ray {
    animation: none !important;
  }

  .premium-ambient,
  .premium-particle {
    display: none !important;
  }

  .premium-reveal,
  .reveal-3d,
  .animate-on-scroll,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .premium-tilt,
  .premium-tilt:hover {
    transform: none !important;
  }
}


