/* ───────────────────────────────────────────
   VARIABLES & RESET
─────────────────────────────────────────── */
:root {
  --gold:        #c6922d;
  --gold-light:  #d9b35b;
  --gold-pale:   rgba(198,146,45,.10);
  --gold-glow:   rgba(198,146,45,.22);
  --dark:        #111418;
  --dark-2:      #1a1d23;
  --dark-3:      #22262e;
  --cream:       #f8f5ef;
  --cream-2:     #f2ede4;
  --text:        #1a1d23;
  --text-2:      #4b5261;
  --text-3:      #8a929f;
  --border:      rgba(0,0,0,.08);
  --r:           12px;
  --r-lg:        20px;
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ───────────────────────────────────────────
   UTILIDADES
─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(198,146,45,.25);
  margin-bottom: 18px;
}

.tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   BOTONES
─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
  letter-spacing: .1px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198,146,45,.38);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
}

.btn-dark {
  background: var(--dark-2);
  color: #fff;
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.btn-sm { padding: 9px 20px; font-size: 13px; border-radius: 8px; }

/* ───────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,20,24,.92);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .3s;
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  opacity: .6;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

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

.nav-logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.nav-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--serif);
  letter-spacing: -.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.nav-links a:hover { color: #fff; }

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

.nav-login {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.nav-login:hover { color: var(--gold); }

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(198,146,45,.18), transparent),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(198,146,45,.08), transparent),
    linear-gradient(160deg, #111418 0%, #1a1d23 50%, #0f1217 100%);
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Grain overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
  pointer-events: none;
}

/* Decorative circles */
#hero::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(198,146,45,.08);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(198,146,45,.06);
  top: 50%; right: -50px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 14px;
}

.hero-trust-text {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.hero-trust-text strong { color: rgba(255,255,255,.75); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cuadro-mockup {
  width: 360px;
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, #23272e, #1c2028);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(198,146,45,.15),
    inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-12px); }
}

.cuadro-top {
  height: 45%;
  background: linear-gradient(145deg, #2e3440, #252930);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foto grupal simulada */
.foto-group {
  display: flex;
  gap: -8px;
  align-items: flex-end;
  padding: 16px;
}

.foto-person {
  width: 36px; height: 44px;
  border-radius: 8px;
  background: linear-gradient(145deg, #3d4451, #4a5161);
  border: 1px solid rgba(255,255,255,.08);
  margin-left: -8px;
  animation: personPop .5s ease both;
}

.foto-person:nth-child(1) { animation-delay: .1s; height: 38px; }
.foto-person:nth-child(2) { animation-delay: .2s; height: 48px; }
.foto-person:nth-child(3) { animation-delay: .3s; height: 52px; }
.foto-person:nth-child(4) { animation-delay: .4s; height: 44px; }
.foto-person:nth-child(5) { animation-delay: .5s; height: 40px; }
.foto-person:nth-child(6) { animation-delay: .6s; height: 46px; }

@keyframes personPop {
  from { opacity: 0; transform: scale(.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Grilla de fotos individuales */
.cuadro-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 8px;
}

.cuadro-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(145deg, #2e3440, #363d4a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  position: relative;
}

.cuadro-cell-avatar {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5161, #3d4451);
}

.cuadro-cell-name {
  height: 3px;
  width: 55%;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
}

.cuadro-label {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Badge "Nuevo" flotante */
.badge-float {
  position: absolute;
  top: -12px; right: -20px;
  background: var(--dark-2);
  border: 1px solid rgba(198,146,45,.25);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
  animation: float 6s ease-in-out infinite .8s;
}

.badge-float-val {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.badge-float-label {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 2px;
}

/* Badge "Entregado" flotante */
.badge-float-2 {
  position: absolute;
  bottom: 20px; left: -30px;
  background: var(--dark-2);
  border: 1px solid rgba(198,146,45,.2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
  animation: float 6s ease-in-out infinite 1.6s;
}

.badge-float-2-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.badge-float-2-text .val  { font-size: 12px; font-weight: 700; color: #fff; }
.badge-float-2-text .sub  { font-size: 10px; color: rgba(255,255,255,.45); }

/* ───────────────────────────────────────────
   LOGOS / SOCIAL PROOF BAR
─────────────────────────────────────────── */
#trust-bar {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.trust-stat .num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}

.trust-stat .lbl {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  text-align: center;
  letter-spacing: .3px;
}

.trust-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ───────────────────────────────────────────
   SECCIÓN CÓMO FUNCIONA
─────────────────────────────────────────── */
#how {
  padding: 100px 0;
  background: var(--cream);
}

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

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

h2 em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.step-card {
  background: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background .25s;
}

.step-card:hover { background: #fffdf9; }

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(198,146,45,.15);
  line-height: 1;
  position: absolute;
  top: 20px; right: 22px;
  font-style: italic;
}

.step-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border: 1px solid rgba(198,146,45,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   FEATURES / QUÉ OBTIENES
─────────────────────────────────────────── */
#features {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(198,146,45,.06), transparent),
    var(--cream-2);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  position: relative;
}

/* Cuadro preview grande */
.preview-frame {
  width: 100%;
  aspect-ratio: 2/3;
  max-width: 540px;
  background: linear-gradient(145deg, #1e2229, #171b21);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(198,146,45,.12);
  overflow: hidden;
  margin: 0 auto;
}

.preview-header {
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.preview-body {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 8px);
}

.preview-group-photo {
  width: 100%;
  height: 140px;
  background: linear-gradient(145deg, #2a3040, #232832);
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-group-inner {
  display: flex;
  gap: -4px;
}

.pg {
  width: 28px; height: 36px;
  border-radius: 6px;
  background: linear-gradient(145deg, #3a4252, #464f63);
  margin-left: -4px;
  border: 1px solid rgba(255,255,255,.06);
}

.preview-grid-mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  flex: 1;
}

.pgm {
  background: linear-gradient(145deg, #2a3040, #232832);
  border-radius: 5px;
  aspect-ratio: .8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.pgm-av  { width: 60%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.1); }
.pgm-ln  { height: 2px; width: 70%; background: rgba(255,255,255,.12); border-radius: 1px; }
.pgm-ln2 { height: 2px; width: 50%; background: rgba(255,255,255,.08); border-radius: 1px; }

.preview-logo-bar {
  height: 24px;
  background: linear-gradient(135deg, rgba(198,146,45,.15), rgba(217,179,91,.08));
  border-radius: 6px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-logo-dot {
  width: 40px; height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  opacity: .7;
}

/* Chip flotante */
.feat-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-chip-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.feat-chip-icon.gold { background: var(--gold-pale); }
.feat-chip-icon.green { background: #eaf3de; }

.feat-chip-1 { top: 20px; right: -24px; animation: float 6s ease-in-out infinite; }
.feat-chip-2 { bottom: 40px; left: -24px; animation: float 6s ease-in-out infinite .9s; }

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  border: 1px solid rgba(198,146,45,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .2s;
}

.feature-item:hover .feature-icon { transform: scale(1.08); }

.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   PLANTILLAS / ESTILOS
─────────────────────────────────────────── */
#plantillas {
  padding: 100px 0;
  background: var(--cream);
}

.plantillas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.plantilla-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.plantilla-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(198,146,45,.2);
}

.plantilla-preview {
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.plantilla-preview-1 {
  background: linear-gradient(145deg, #0f1520 0%, #1a253a 50%, #0d1828 100%);
}
.plantilla-preview-2 {
  background: linear-gradient(145deg, #1a1400 0%, #2e2200 50%, #1a1400 100%);
}
.plantilla-preview-3 {
  background: linear-gradient(145deg, #0a1a14 0%, #112510 50%, #0a1a14 100%);
}

/* Cuadros en miniatura dentro de la preview */
.plantilla-mini-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  padding: 12px;
  opacity: .6;
}

.pmg { border-radius: 4px; }

.plantilla-preview-1 .pmg { background: rgba(100,130,200,.25); }
.plantilla-preview-2 .pmg { background: rgba(198,146,45,.2); }
.plantilla-preview-3 .pmg { background: rgba(100,180,120,.2); }

.plantilla-badge {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.badge-azul  { background: rgba(100,130,200,.3); color: #a8c0ff; }
.badge-gold  { background: rgba(198,146,45,.35); color: var(--gold-light); }
.badge-verde { background: rgba(100,180,120,.3); color: #a0d8a0; }

.plantilla-info {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
}

.plantilla-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.plantilla-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

.plantillas-cta {
  text-align: center;
  margin-top: 40px;
}

/* ───────────────────────────────────────────
   PRECIOS
─────────────────────────────────────────── */
#precios {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(198,146,45,.08), transparent),
    var(--cream-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 50px var(--gold-glow);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-header.dark {
  background: var(--dark-2);
}

.pricing-badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 6px;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 11px;
}

.pricing-header.dark .pricing-name { color: rgba(255,255,255,.5); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
}

.pricing-header.dark .pricing-currency { color: rgba(255,255,255,.6); }

.pricing-amount {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-header.dark .pricing-amount { color: #fff; }

.pricing-unit {
  font-size: 12px;
  color: var(--text-3);
  margin-left: 2px;
}

.pricing-desc {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
}

.pricing-header.dark .pricing-desc { color: rgba(255,255,255,.4); }

.pricing-features {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}

.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(198,146,45,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.pricing-cta {
  padding: 0 28px 28px;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ───────────────────────────────────────────
   TESTIMONIOS
─────────────────────────────────────────── */
#testimonios {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

#testimonios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(198,146,45,.07), transparent);
  pointer-events: none;
}

#testimonios h2 { color: #fff; }
#testimonios .section-sub { color: rgba(255,255,255,.5); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.testimonio-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .25s;
  position: relative;
}

.testimonio-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(198,146,45,.2);
  transform: translateY(-3px);
}

.testimonio-stars {
  display: flex;
  gap: 3px;
  font-size: 13px;
  color: var(--gold);
}

.testimonio-text {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-style: italic;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
}

.testimonio-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #c6922d, #d9b35b); }
.av-2 { background: linear-gradient(135deg, #3b6d11, #639922); }
.av-3 { background: linear-gradient(135deg, #1a3a6b, #2a6099); }

.testimonio-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.testimonio-role {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
}

/* ───────────────────────────────────────────
   FAQ
─────────────────────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 52px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(198,146,45,.3); }

.faq-item.open { border-color: rgba(198,146,45,.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .2s;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(198,146,45,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--gold);
  transition: transform .25s, background .2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--gold);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ───────────────────────────────────────────
   CTA FINAL
─────────────────────────────────────────── */
#cta-final {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(198,146,45,.12), transparent),
    linear-gradient(160deg, #0f1217 0%, #1a1d23 50%, #111418 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(198,146,45,.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#cta-final::after {
  content: "";
  position: absolute;
  width: 750px; height: 750px;
  border-radius: 50%;
  border: 1px solid rgba(198,146,45,.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
}

#cta-final h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 18px;
}

#cta-final .section-sub {
  color: rgba(255,255,255,.5);
  margin-bottom: 42px;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ───────────────────────────────────────────
   ANIMACIONES DE SCROLL
─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc           { margin: 0 auto 36px; }
  .hero-actions        { justify-content: center; }
  .hero-trust          { justify-content: center; }
  .hero-visual         { display: none; }
  .steps-grid          { grid-template-columns: 1fr 1fr; }
  .features-layout     { grid-template-columns: 1fr; }
  .features-visual     { display: none; }
  .plantillas-grid     { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .testimonios-grid    { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .faq-grid            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .nav-links           { display: none; }
  .trust-inner         { gap: 24px; }
}

@media (max-width: 600px) {
  .steps-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid{ max-width: 100%; }
}

/* ───────────────────────────────────────────
   BOOTSTRAP MODAL FIX PARA LANDING
   Necesario si no se carga bootstrap.min.css
─────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform .3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 30px auto;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.in {
  opacity: .55;
}

.modal.in {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  min-height: 690px;
}

.hero-cuadro-stage {
  position: relative;
  width: 500px;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-cuadro-slider {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: visible;
}

.hero-cuadro-slide {
  --img-scale: 1;

  position: absolute;
  top: 50%;
  left: 50%;

  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;

  opacity: 0;
  z-index: 1;
  pointer-events: none;

  transform: translate(-50%, -50%) rotate(-2deg) scale(calc(.985 * var(--img-scale)));
  transform-origin: center center;

  transition:
    opacity .9s ease,
    transform 1s ease,
    filter .9s ease;

  filter:
    drop-shadow(0 36px 60px rgba(0,0,0,.42))
    drop-shadow(0 10px 20px rgba(0,0,0,.24));
}

.hero-cuadro-slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-2deg) scale(var(--img-scale));
}

.hero-cuadro-slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-2deg) scale(1);
}

/* Flotación suave */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-cuadro-stage {
  position: relative;
  z-index: 2;
}

.badge-float,
.badge-float-2 {
  z-index: 10;
}

.hero-cuadro-slide.slide-vertical {
  --img-scale: 1;
}

.hero-cuadro-slide.slide-horizontal {
  --img-scale: 1.28;
}

.hero-cuadro-slide.slide-horizontal-wide {
  --img-scale: 1.50;
}

.preview-frame {
  width: 100%;
  aspect-ratio: 2/3;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  background: transparent;
  border: 1px solid rgba(198,146,45,.18);
  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(198,146,45,.12);
}

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