*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink:       #d91a8a;
  --pink-dark:  #b01470;
  --pink-light: #f5d0e8;
  --pink-bg:    #fdf0f8;
  --blue:       #4db8d4;
  --blue-light: #e0f4fa;
  --gray-light: #f5f5f5;
  --gray:       #888;
  --dark:       #222;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --danger:     #c0392b;
  --success:    #27ae60;
}
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }

/* ── TOPBAR ── */
.topbar {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-link {
  background: var(--pink);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-link:hover { background: var(--pink-dark); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, #a0127a 100%);
  color: var(--white);
  padding: 60px 5% 50px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 6px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-boxes { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 20px; margin-top: 28px; }
.hero-exclusivo {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: rgba(0,0,0,0.18); border-radius: var(--radius); padding: 18px 32px; font-size: 0.95rem;
}
.hero-exclusivo strong { font-weight: 800; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.hero-exclusivo p { margin: 0; }
.hero-exclusivo p span { font-weight: 700; }
.hero-amount {
  background: rgba(255,255,255,0.15); border-radius: var(--radius); padding: 18px 32px;
  display: flex; flex-direction: column; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1rem;
}
.hero-amount strong { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; display: block; }

/* ── MAIN GRID ── */
.main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 5% 60px;
  scroll-margin-top: 90px;
}

/* ── FORM CARD ── */
.form-card {
  background: linear-gradient(160deg, #f7c6e8 0%, #f0a8d8 100%);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pink-dark);
  text-align: center;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-card .form-subtitle {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(80,0,40,0.65);
  margin-bottom: 18px;
  font-style: italic;
}
.form-card label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
  margin-bottom: 4px;
  margin-top: 12px;
}
.form-card input, .form-card select {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-card input:focus, .form-card select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217,26,138,0.15);
  background: #fff;
}
.form-card input.error, .form-card select.error {
  border-color: var(--danger) !important;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-group { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.radio-group label {
  display: flex; align-items: center; gap: 6px; margin: 0;
  font-size: 0.88rem; font-weight: 700; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15); cursor: pointer;
}
.radio-group input[type="radio"] { width: auto; accent-color: var(--pink); }

/* Form states */
.bloqueo-box {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.83rem;
  color: #7b1010;
  display: none;
}
.califica-box {
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.4);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #155724;
  font-weight: 600;
  display: none;
}
.step-datos { display: none; }
.step-datos.visible { display: block; }

.btn-enviar {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-enviar:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-enviar:active { transform: translateY(0); }
.btn-enviar:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.success-box {
  background: rgba(39,174,96,0.15);
  border: 1.5px solid rgba(39,174,96,0.5);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: none;
}
.success-box h3 { font-family: 'Montserrat', sans-serif; color: #155724; margin-bottom: 8px; }
.success-box p { font-size: 0.88rem; color: #155724; }

/* ── RIGHT COLUMN ── */
.right-col { display: flex; flex-direction: column; gap: 32px; }
.tagline-card {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 32px 36px;
  color: var(--white);
}
.tagline-card h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 14px; }
.tagline-card p { opacity: 0.92; font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.tagline-card .whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 10px 22px;
  border-radius: 50px; text-decoration: none; font-weight: 700;
  font-size: 0.88rem; margin-top: 8px; transition: opacity 0.2s;
}
.tagline-card .whatsapp-btn:hover { opacity: 0.85; }
.video-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:none; }
.video-placeholder {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; gap: 14px;
}
.video-placeholder svg { opacity: 0.6; }
.video-placeholder p { font-size: 0.9rem; opacity: 0.5; }

/* ── IPHONES SECTION ── */
.iphone-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0f2e 50%, #2a0f3e 100%);
  padding: 60px 5%;
  color: white;
}
.iphone-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.iphone-badge {
  display: inline-block;
  background: rgba(240,98,146,0.25);
  border: 1px solid rgba(240,98,146,0.5);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f48fb1;
  margin-bottom: 14px;
}
.iphone-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.iphone-inner h2 span { color: #f48fb1; display: block; }
.iphone-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; max-width: 460px; }
.iphone-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-iphone-primary {
  display: inline-block;
  background: #f06292;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.1s;
}
.btn-iphone-primary:hover { background: #e91e8c; transform: translateY(-1px); }
.btn-iphone-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.btn-iphone-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.iphone-img-wrap { position: relative; flex-shrink: 0; }
.iphone-img-wrap img {
  width: 220px;
  filter: drop-shadow(0 20px 60px rgba(240,98,146,0.4));
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
}
.iphone-img-wrap img:hover { transform: rotate(0deg) scale(1.04); }
.iphone-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(240,98,146,0.1);
  border-left: 3px solid #f06292;
  border-radius: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* ── EVALUACION ── */
.evaluacion-section { background: var(--gray-light); padding: 70px 5%; }
.two-col-img { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1100px; margin: 0 auto; }
.two-col-img img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 320px; }
.section-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--pink); margin-bottom: 8px; }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.section-text { color: #555; font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.btn-primary {
  display: inline-block; background: var(--pink); color: var(--white);
  padding: 12px 30px; border-radius: 50px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* ── PRIVACY ── */
.privacy-section { padding: 70px 5%; background: var(--white); }
.two-col-img.reverse { direction: rtl; }
.two-col-img.reverse > * { direction: ltr; }

/* ── FEATURES ── */
.features-section { background: var(--pink-bg); padding: 70px 5%; text-align: center; }
.features-section .section-title { text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 1100px; margin: 40px auto 0; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 32px 22px; box-shadow: var(--shadow); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--pink) 0%, #a0127a 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.feature-icon svg { color: #fff; }
.feature-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--pink-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.87rem; color: #666; line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--gray-light); padding: 70px 5%; }
.how-inner { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; max-width: 1100px; margin: 40px auto 0; }
.steps { display: flex; flex-direction: column; gap: 30px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 42px; height: 42px; background: var(--pink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; }
.step-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--pink-dark); margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: #555; line-height: 1.7; }
.business-banner { background: linear-gradient(135deg, var(--pink) 0%, #a0127a 100%); border-radius: var(--radius); padding: 40px 32px; color: #fff; text-align: center; }
.business-banner h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; line-height: 1.2; margin-bottom: 14px; }
.business-banner p { font-size: 0.92rem; opacity: 0.9; }

/* ── FAQ ── */
.faq-section { padding: 70px 5%; max-width: 800px; margin: 0 auto; }
.faq-section .section-title { text-align: center; margin-bottom: 10px; }
.faq-section .section-label { text-align: center; }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border: 1.5px solid #f0e0ec; }
.faq-trigger { width: 100%; background: var(--white); border: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); transition: background 0.2s; }
.faq-trigger:hover { background: var(--pink-bg); }
.faq-trigger.open { background: var(--pink); color: #fff; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--pink-light); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s; font-size: 1.1rem; font-weight: 700; color: var(--pink); }
.faq-trigger.open .faq-icon { transform: rotate(45deg); background: rgba(255,255,255,0.25); color: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-body.open { max-height: 400px; }
.faq-body-inner { padding: 18px 24px 22px; font-size: 0.92rem; color: #555; line-height: 1.75; border-top: 1px solid #f0e0ec; }

/* ── LEGAL / FOOTER ── */
.legal-section { background: var(--pink); color: rgba(255,255,255,0.88); padding: 40px 5%; font-size: 0.82rem; line-height: 1.7; text-align: center; }
.footer-bar { background: #1a1a1a; color: #aaa; text-align: center; padding: 18px 5%; font-size: 0.78rem; }
.footer-bar a { color: #ccc; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; }
  .two-col-img, .two-col-img.reverse, .how-inner { grid-template-columns: 1fr; direction: ltr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .iphone-inner { grid-template-columns: 1fr; }
  .iphone-img-wrap { display: flex; justify-content: center; }
  .iphone-img-wrap img { width: 180px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .iphone-btns { flex-direction: column; }
}
