/* EditonChat — Landing styles
   Brand: #14532D (verde oscuro), #16A34A (verde acento), #F0FDF4 (verde suave),
          #F59E0B (ámbar puntero lápiz). */

:root {
  --green-900: #14532D;
  --green-700: #166534;
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --green-50:  #F0FDF4;
  --amber-500: #F59E0B;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow-md: 0 4px 12px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 50px -12px rgba(20,83,45,.25);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--green-900); }

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

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green-900);
  font-size: 18px;
  letter-spacing: -.3px;
}
.brand img { height: 34px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: 15px;
}
.nav a:hover { color: var(--green-900); }
.nav .btn { color: white; }

@media (max-width: 760px) {
  .nav .menu-link { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 6px 18px -6px rgba(22,101,52,.55);
}
.btn-primary:hover {
  background: var(--green-900);
  color: white;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--slate-200);
}
.btn-ghost:hover { background: var(--green-50); border-color: var(--green-100); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 36px 0 90px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(900px 400px at -10% 30%, rgba(20,83,45,.12), transparent 70%),
    linear-gradient(180deg, var(--green-50) 0%, #FFFFFF 75%);
  overflow: hidden;
}
.hero::before {
  /* sutil grid */
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--slate-200) 1px, transparent 1px),
                    linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 30%, transparent 75%);
  opacity: .35;
  pointer-events: none;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero .grid { grid-template-columns: 1fr; gap: 40px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: var(--green-900);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--green-600), var(--green-900) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18px;
  color: var(--slate-700);
  max-width: 580px;
  margin: 0 0 28px;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .meta {
  margin-top: 22px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--slate-500);
}
.hero .meta span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); display: inline-block; }

/* Hero mockup */
.hero-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

/* ============================================================
   Hero animacion sobre captura real (opcion B)
   ============================================================ */
.hero-real {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .3s ease;
  background: var(--green-50);
  width: 100%;
  /* Aspect del clip ampliado en vertical (912x1050) */
  aspect-ratio: 912 / 1050;
  container-type: inline-size;
}
.hero-real:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.hero-real-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

/* ----- Caja de texto sobre el documento BLANCO COMPLETO -----
   Coords reales sobre el clip 912x1050:
     left  = 15.8%
     top   = 23.8%   (250px / 1050)
     width = 49.3%
     height= 72%
*/
.hero-real .hr-text-wrap {
  position: absolute;
  left: 15.8%;
  top: 23.8%;
  width: 49.3%;
  height: 72%;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI', 'Inter', system-ui, sans-serif;
  font-size: clamp(10px, 1.6cqi, 15px);
  line-height: 1.42;
  color: #0F172A;
  text-align: justify;
  text-justify: inter-word;
  pointer-events: none;
  z-index: 3;
  font-variant-emoji: emoji;
}
@supports not (font-size: 1cqi) {
  .hero-real .hr-text-wrap { font-size: 13px; }
}
.hero-real .hr-text {
  white-space: pre-wrap;
  word-break: break-word;
  display: inline;
}
.hero-real .hr-text img.emoji,
.hero-real .hr-bubble-inner img.emoji {
  height: 1.05em;
  width: 1.05em;
  margin: 0 .07em 0 .03em;
  vertical-align: -0.18em;
  display: inline-block;
}
.hero-real .hr-text .b { font-weight: 700; color: #0B1B12; }
.hero-real .hr-text .i { font-style: italic; }
.hero-real .hr-text .s { text-decoration: line-through; opacity: .85; }
.hero-real .hr-text .bi { font-weight: 700; font-style: italic; color: #0B1B12; }
/* Campos del formulario "Cita previa clinica dental" en la animacion del hero */
.hero-real .hr-text .hr-field {
  display: inline-block;
  padding: 0 .35em;
  border: 1px dashed #14532D;
  border-radius: 4px;
  background-color: #F0FDF4;
  color: #14532D;
  font-weight: 700;
  line-height: 1.25;
}
.hero-real .hr-text .hr-field.filled {
  border-style: solid;
  border-color: #16A34A;
  background-color: #DCFCE7;
  color: #14532D;
  font-weight: 700;
  animation: hrFieldPop .3s ease;
}
@keyframes hrFieldPop { 0% { transform: scale(.94); } 60% { transform: scale(1.05); } 100% { transform: scale(1); } }
/* En la fase del formulario, texto alineado a la izquierda (evita separacion excesiva del justify)
   y fuente de texto normal (las fuentes de emoji separaban los digitos del telefono/horas). */
.hero-real .hr-text-wrap.form-mode {
  text-align: left;
  text-justify: auto;
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  font-variant-emoji: text;
}
/* Rotulo "Ejemplo: formulario" */
.hero-real .hr-form-label {
  position: absolute;
  left: 15.8%;
  top: 18.2%;
  z-index: 4;
  background: var(--green-700);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(8px, 1.25cqi, 12px);
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.hero-real .hr-form-label.show { opacity: 1; transform: translateY(0); }
.hero-real .hr-caret {
  display: inline-block;
  width: 1.8px;
  height: 1.1em;
  background: var(--green-700);
  margin-left: 1px;
  vertical-align: -2px;
  animation: caretBlink 1s steps(2) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* ----- Pulso sobre el boton WhatsApp -----
   left=68.84% top=52.5% width=24.56% height=6%
*/
.hero-real .hr-wa-pulse {
  position: absolute;
  left: 68.7%;
  top: 39.8%;
  width: 25%;
  height: 4.8%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
}
.hero-real .hr-wa-pulse.pulse {
  animation: hrWaPulse 0.9s ease-out;
}
@keyframes hrWaPulse {
  0%   { opacity: 0; box-shadow: 0 0 0 0 rgba(34,197,94,.65); transform: scale(1); }
  20%  { opacity: 1; box-shadow: 0 0 0 6px rgba(34,197,94,.45); transform: scale(1.04); }
  60%  { opacity: 1; box-shadow: 0 0 0 14px rgba(34,197,94,0); transform: scale(1); }
  100% { opacity: 0; box-shadow: 0 0 0 0 rgba(34,197,94,0); transform: scale(1); }
}

/* ----- Icono volando ----- */
.hero-real .hr-fly {
  position: absolute;
  left: 73%;
  top: 41.1%;
  width: clamp(20px, 2.4cqi, 32px);
  height: clamp(20px, 2.4cqi, 32px);
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -4px rgba(37,211,102,.6);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.hero-real .hr-fly svg { width: 60%; height: 60%; }
.hero-real .hr-fly.go {
  animation: hrFly 1.3s cubic-bezier(.4,.0,.2,1) forwards;
}
@keyframes hrFly {
  0%   { opacity: 0; transform: translate(0,0) scale(.4); }
  15%  { opacity: 1; transform: translate(8px,4px) scale(1); }
  60%  { opacity: 1; transform: translate(60px,180px) scale(.85); }
  100% { opacity: 0; transform: translate(120px,300px) scale(.55); }
}

/* ----- Bocadillo WhatsApp ----- */
.hero-real .hr-bubble {
  position: absolute;
  right: 4%;
  bottom: 4%;
  max-width: 36%;
  background: #DCF8C6;
  color: #0F172A;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Segoe UI', 'Inter', sans-serif;
  font-size: clamp(8.5px, 1.3cqi, 13px);
  line-height: 1.5;
  padding: 8px 10px 6px;
  border-radius: 10px 10px 2px 10px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 4;
  font-variant-emoji: emoji;
}
.hero-real .hr-bubble::before {
  content: '';
  position: absolute;
  right: -6px; bottom: 4px;
  width: 0; height: 0;
  border: 6px solid transparent;
  border-left-color: #DCF8C6;
  border-bottom: 0;
}
.hero-real .hr-bubble.show {
  animation: hrBubbleIn .5s ease forwards .8s;
}
@keyframes hrBubbleIn {
  0% { opacity: 0; transform: translateY(12px) scale(.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-real .hr-bubble.hide {
  animation: hrBubbleOut .35s ease forwards;
}
/* Bocadillo de la fase formulario: fuente de texto normal (evita separacion de digitos por la fuente emoji) */
.hero-real .hr-bubble.form-bubble {
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  font-variant-emoji: text;
}
@keyframes hrBubbleOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-6px) scale(.96); }
}
.hero-real .hr-bubble .hr-time {
  font-size: .75em;
  color: #6B7280;
  letter-spacing: .3px;
  font-variant-emoji: text;
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
}
.hero-real .hr-bubble .hr-bubble-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  font-variant-emoji: text;
}
.hero-real .hr-bubble .hr-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 10px -2px rgba(18,140,126,.5);
  flex-shrink: 0;
}
.hero-real .hr-bubble .hr-send svg {
  margin-left: -1px;
}
.hero-real .hr-bubble-inner .b { font-weight: 700; }
.hero-real .hr-bubble-inner .i { font-style: italic; }
.hero-real .hr-bubble-inner .s { text-decoration: line-through; opacity: .85; }
.hero-real .hr-bubble-inner .bi { font-weight: 700; font-style: italic; }

.hero-anim {
  position: relative;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .3s ease;
}
.hero-anim:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }

.hero-anim .titlebar,
.hero-anim .body,
.hero-anim .toolbar,
.hero-anim .doc,
.hero-anim .panel {
  /* Reusa estilos de hero-mockup */
}

.hero-anim .toolbar .ic {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Times New Roman', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  background: white;
  border: 1px solid var(--slate-200);
}
.hero-anim .toolbar .ic.active {
  background: var(--green-100);
  color: var(--green-900);
  border-color: var(--green-500);
  box-shadow: 0 0 0 2px rgba(34,197,94,.2);
  transition: all .2s ease;
}

.hero-anim .doc {
  position: relative;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate-900);
  min-height: 220px;
}
.hero-anim .doc-text {
  white-space: pre-wrap;
  word-break: break-word;
}
.hero-anim .doc-text .b { font-weight: 800; color: #0F172A; }
.hero-anim .doc-text .i { font-style: italic; }
.hero-anim .doc-text .s { text-decoration: line-through; opacity: .85; }

.hero-anim .caret {
  display: inline-block;
  width: 1.5px;
  height: 15px;
  background: var(--green-700);
  margin-left: 1px;
  vertical-align: -2px;
  animation: caretBlink 1s steps(2) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

.hero-anim .panel {
  position: relative;
}
.hero-anim .panel .pill {
  display: flex; align-items: center; justify-content: center;
  cursor: default;
  user-select: none;
  transition: transform .12s ease, box-shadow .2s ease;
}
.hero-anim .panel .pill.secondary {
  background: var(--slate-100); color: var(--green-900);
}
.hero-anim .panel .pill.pulse {
  animation: btnPulse .6s ease;
  box-shadow: 0 0 0 0 rgba(22,101,52,.45);
}
@keyframes btnPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22,101,52,.55); }
  35% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(22,101,52,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22,101,52,0); }
}

.hero-anim .fly-msg {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -4px rgba(37,211,102,.6);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.hero-anim .fly-msg.go {
  animation: flyToWA 1.2s cubic-bezier(.4,.0,.2,1) forwards;
}
@keyframes flyToWA {
  0%   { opacity: 0; transform: translate(0, 0) scale(.4); }
  15%  { opacity: 1; transform: translate(20px, -10px) scale(1); }
  100% { opacity: 0; transform: translate(180px, -40px) scale(.6); }
}

.hero-anim .wa-bubble {
  position: absolute;
  right: 14px;
  bottom: 18px;
  max-width: 170px;
  background: #DCF8C6; /* WhatsApp green bubble */
  color: #1B1B1B;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 11.5px;
  line-height: 1.5;
  padding: 8px 10px 6px;
  border-radius: 10px 10px 2px 10px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  z-index: 4;
}
.hero-anim .wa-bubble::before {
  content: '';
  position: absolute;
  right: -6px; bottom: 4px;
  width: 0; height: 0;
  border: 6px solid transparent;
  border-left-color: #DCF8C6;
  border-bottom: 0;
}
.hero-anim .wa-bubble.show {
  animation: bubbleIn .5s ease forwards .9s;
}
@keyframes bubbleIn {
  0% { opacity: 0; transform: translateY(12px) scale(.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-anim .wa-bubble.hide {
  animation: bubbleOut .35s ease forwards;
}
@keyframes bubbleOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-6px) scale(.96); }
}
.hero-anim .wa-bubble .wa-time {
  font-size: 9px;
  text-align: right;
  color: #6B7280;
  margin-top: 3px;
  letter-spacing: .3px;
}
.hero-anim .wa-bubble-inner .b { font-weight: 800; }
.hero-anim .wa-bubble-inner .i { font-style: italic; }
.hero-anim .wa-bubble-inner .s { text-decoration: line-through; opacity: .85; }

@media (max-width: 720px) {
  .hero-anim .body { grid-template-columns: 1fr; min-height: 0; }
  .hero-anim .toolbar, .hero-anim .panel { display: none; }
  .hero-anim .wa-bubble { display: none; }
  .hero-anim .fly-msg { display: none; }
}
.hero-mockup .titlebar,
.hero-anim .titlebar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #fff; border-bottom: 1px solid var(--slate-200);
}
.hero-mockup .titlebar .b,
.hero-anim .titlebar .b { width: 11px; height: 11px; border-radius: 50%; }
.hero-mockup .titlebar .b.r,
.hero-anim .titlebar .b.r { background: #FF5F57; }
.hero-mockup .titlebar .b.y,
.hero-anim .titlebar .b.y { background: #FEBC2E; }
.hero-mockup .titlebar .b.g,
.hero-anim .titlebar .b.g { background: #28C840; }
.hero-mockup .titlebar .t,
.hero-anim .titlebar .t {
  margin-left: 10px; font-size: 12px; color: var(--slate-500); font-weight: 500;
}
.hero-mockup .body,
.hero-anim .body {
  padding: 18px;
  background: var(--green-50);
  min-height: 380px;
  display: grid;
  grid-template-columns: 56px 1fr 200px;
  gap: 12px;
  position: relative;
}
.hero-mockup .toolbar,
.hero-anim .toolbar {
  background: white; border: 1px solid var(--slate-200); border-radius: 10px;
  padding: 8px; display: flex; flex-direction: column; gap: 6px;
}
.hero-mockup .toolbar .ic,
.hero-anim .toolbar .ic {
  width: 100%; aspect-ratio: 1; background: var(--slate-100); border-radius: 6px;
}
.hero-mockup .doc,
.hero-anim .doc {
  background: white; border: 1px solid var(--slate-200); border-radius: 10px;
  padding: 18px;
}
.hero-mockup .panel,
.hero-anim .panel {
  background: white; border: 1px solid var(--slate-200); border-radius: 10px;
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
}
.hero-mockup .panel .pill,
.hero-anim .panel .pill {
  background: var(--green-700); color: white; text-align: center;
  border-radius: 999px; padding: 8px 0; font-size: 12px; font-weight: 600;
}
.hero-mockup .panel .row,
.hero-anim .panel .row {
  height: 9px; background: var(--slate-100); border-radius: 4px;
}

@media (max-width: 720px) {
  .hero-mockup .body { grid-template-columns: 1fr; min-height: 0; }
  .hero-mockup .toolbar, .hero-mockup .panel { display: none; }
}

/* ---------- Section ---------- */
section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow { background: var(--slate-100); color: var(--green-900); }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 14px 0 12px;
  letter-spacing: -.8px;
  color: var(--green-900);
}
.section-head p {
  color: var(--slate-700); font-size: 17px; max-width: 680px; margin: 0 auto;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  position: relative;
  padding: 26px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.feature .icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-50); color: var(--green-900);
  margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 17px; color: var(--green-900); }
.feature p { margin: 0; color: var(--slate-700); font-size: 14.5px; }

/* ---------- Why us ---------- */
.why { background: var(--green-50); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.compare {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare h3 {
  margin: 0;
  padding: 16px 22px;
  background: var(--green-700);
  color: white;
  font-size: 15px;
  letter-spacing: .2px;
}
.compare.alt h3 { background: var(--slate-700); }
.compare ul { list-style: none; padding: 12px 22px 22px; margin: 0; }
.compare li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--slate-200);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--slate-700);
}
.compare li:last-child { border: none; }
.compare li svg { flex: none; margin-top: 2px; }

/* ---------- Screenshots ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .shots { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .shots { grid-template-columns: 1fr; } }
.shot {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shot .ph {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, var(--green-50), white 60%),
    repeating-linear-gradient(90deg, transparent 0 39px, var(--slate-100) 39px 40px);
  position: relative;
}
.shot .ph::after {
  content: ''; position: absolute; inset: 16px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, white, var(--slate-50));
  border: 1px solid var(--slate-200);
}
.shot img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top left;
  display: block;
  background: var(--green-50);
  border-bottom: 1px solid var(--slate-200);
}
.shot .cap { padding: 14px 16px; font-size: 14px; color: var(--slate-700); }

/* ---------- Pricing ---------- */
.price-card {
  max-width: 460px; margin: 0 auto;
  background: white;
  border: 2px solid var(--green-700);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 30px 60px -30px rgba(22,101,52,.35);
  position: relative;
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--green-900);
  padding: 4px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
}
.price-card h3 { margin: 0 0 8px; font-size: 22px; color: var(--green-900); }
.price-card .pp { font-size: 56px; font-weight: 800; color: var(--green-900); letter-spacing: -1.5px; }
.price-card .pp small { font-size: 16px; color: var(--slate-500); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 24px; text-align: left; }
.price-card li {
  padding: 8px 0; font-size: 15px; color: var(--slate-700);
  display: flex; align-items: flex-start; gap: 10px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--green-100); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-900);
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px; font-weight: 400; color: var(--green-700);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 12px 0 0; color: var(--slate-700); font-size: 15px; line-height: 1.65; }

/* ---------- Contact ---------- */
.contact {
  background: var(--green-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .contact { grid-template-columns: 1fr; padding: 32px; } }
.contact h2 { color: white; font-size: 30px; margin: 0 0 12px; letter-spacing: -.6px; }
.contact p { color: rgba(255,255,255,.85); margin: 0 0 20px; }
.contact .channels { display: flex; flex-direction: column; gap: 12px; }
.channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: white;
  transition: background .2s ease, transform .15s ease;
}
.channel:hover { background: rgba(255,255,255,.15); color: white; transform: translateX(2px); }
.channel .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
}
.channel .lbl { font-size: 12px; color: rgba(255,255,255,.6); }
.channel .val { font-weight: 600; font-size: 15px; }

/* ---------- Footer ---------- */
footer.foot {
  padding: 40px 0 30px;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-500);
  font-size: 14px;
}
footer.foot .row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
footer.foot a { color: var(--slate-700); }
footer.foot a:hover { color: var(--green-900); }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp .7s ease forwards; }

/* selection */
::selection { background: var(--green-100); color: var(--green-900); }

/* ============================================================
   Seccion destacada: FORMULARIOS
   ============================================================ */
.forms-spot {
  background:
    radial-gradient(1000px 500px at 80% -20%, rgba(22,101,52,.18), transparent 60%),
    linear-gradient(180deg, #0b3a1f 0%, #14532D 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.forms-spot::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.forms-spot .section-head h2 { color: white; }
.forms-spot .section-head p { color: rgba(255,255,255,.82); }
.forms-spot .section-head .eyebrow {
  background: rgba(245,158,11,.15);
  color: #FDE68A;
}
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .forms-grid { grid-template-columns: 1fr; gap: 36px; }
}
.forms-text .kicker {
  font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  color: #FDE68A; font-weight: 700; margin-bottom: 10px;
}
.forms-text h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  line-height: 1.15;
  color: white;
  letter-spacing: -.5px;
}
.forms-text p {
  color: rgba(255,255,255,.85);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.forms-text .bullets {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
}
@media (max-width: 520px) { .forms-text .bullets { grid-template-columns: 1fr; } }
.forms-text .bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.92);
  font-size: 14.5px;
}
.forms-text .bullets svg { flex: none; margin-top: 2px; color: #86EFAC; }
.forms-text .field-chips {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.forms-text .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.92);
  font-size: 13px; font-weight: 500;
}
.forms-text .chip .d { width: 6px; height: 6px; border-radius: 50%; background: #F59E0B; }

.forms-visual {
  position: relative;
}
.forms-visual .big-shot {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .3s ease;
}
.forms-visual .big-shot:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.forms-visual .big-shot img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover; object-position: top left;
  cursor: zoom-in;
}
.forms-visual .mini {
  position: absolute;
  width: 40%;
  bottom: -20px; left: -30px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.6);
  transform: rotate(-3deg);
  transition: transform .3s ease;
}
.forms-visual .mini:hover { transform: rotate(-1deg) translateY(-4px); }
.forms-visual .mini img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover; object-position: top left;
  cursor: zoom-in;
}
@media (max-width: 900px) {
  .forms-visual .mini { display: none; }
  .forms-visual .big-shot { transform: none; }
}

/* ============================================================
   Lightbox
   ============================================================ */
html.ce-lb-lock, html.ce-lb-lock body { overflow: hidden !important; }
#ce-lightbox {
  position: fixed; inset: 0; z-index: 100000;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
  font-family: inherit;
}
#ce-lightbox.open { display: flex; animation: ceLbFade .2s ease; }
@keyframes ceLbFade { from { opacity: 0; } to { opacity: 1; } }
#ce-lightbox .ce-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 27, 19, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}
#ce-lightbox .ce-lb-figure {
  position: relative;
  max-width: min(1800px, 98vw);
  max-height: 97vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
#ce-lightbox .ce-lb-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto; height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,.7);
  background: white;
  object-fit: contain;
  animation: ceLbPop .25s ease;
}
@keyframes ceLbPop { from { transform: scale(.96); opacity: .4; } to { transform: scale(1); opacity: 1; } }
#ce-lightbox .ce-lb-cap {
  color: rgba(255,255,255,.9);
  font-size: 14.5px;
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
}
#ce-lightbox .ce-lb-close,
#ce-lightbox .ce-lb-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 28px; line-height: 1;
  transition: background .15s ease, transform .1s ease;
}
#ce-lightbox .ce-lb-close:hover,
#ce-lightbox .ce-lb-nav:hover { background: rgba(255,255,255,.22); }
#ce-lightbox .ce-lb-close:active,
#ce-lightbox .ce-lb-nav:active { transform: scale(.92); }
#ce-lightbox .ce-lb-close { top: 24px; right: 24px; font-size: 32px; }
#ce-lightbox .ce-lb-nav.ce-lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
#ce-lightbox .ce-lb-nav.ce-lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
#ce-lightbox .ce-lb-nav.ce-lb-prev:active { transform: translateY(-50%) scale(.92); }
#ce-lightbox .ce-lb-nav.ce-lb-next:active { transform: translateY(-50%) scale(.92); }
#ce-lightbox .ce-lb-counter {
  position: absolute;
  top: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 13px; letter-spacing: .5px;
  font-weight: 500;
}

@media (max-width: 640px) {
  #ce-lightbox { padding: 12px; }
  #ce-lightbox .ce-lb-close,
  #ce-lightbox .ce-lb-nav { width: 40px; height: 40px; font-size: 24px; }
  #ce-lightbox .ce-lb-close { top: 12px; right: 12px; }
  #ce-lightbox .ce-lb-nav.ce-lb-prev { left: 8px; }
  #ce-lightbox .ce-lb-nav.ce-lb-next { right: 8px; }
}
