/* ═══════════════════════════════════════════════
   Guía FYO — sumate.css (Etapa 4)
   Página "Sumá tu local"
   Planes: gratis / base / fyo
   ═══════════════════════════════════════════════ */

:root {
  --orange: #E8650A;
  --yellow: #F5A623;
  --teal:   #1DBFA3;
  --navy:   #0F1923;
  --pink:   #FF6B9D;
  --purple: #9B59B6;
  --green:  #27AE60;
  --cream:  #FFF8F0;
  --white:  #ffffff;
  --text:   #333344;
  --muted:  #777788;
  --border: #EDE8E2;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* ══════════════ NAV ══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); display: flex; align-items: center;
  justify-content: space-between; padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-paw { font-size: 22px; }
.logo-text { font-family: 'Fredoka One', cursive; font-size: 20px; color: var(--yellow); display: block; line-height: 1.1; }
.nav-logo small { font-size: 10px; color: #888; font-weight: 600; display: block; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-back { color: #aaa; font-weight: 700; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.nav-back:hover { color: var(--yellow); }
.nav-cta {
  background: var(--teal); color: white; padding: 10px 22px; border-radius: 50px;
  font-weight: 800; font-size: 14px; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--yellow); color: var(--navy); transform: scale(1.05); }

/* ══════════════ HERO ══════════════ */
.hero {
  background: var(--navy); padding: 120px 20px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,101,10,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 40%, rgba(29,191,163,0.12) 0%, transparent 60%);
}
.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.35);
  color: var(--yellow); padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Fredoka One', cursive; font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: white; line-height: 1.1; margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }
.hero-sub { color: #8fa8bc; font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px 22px; text-align: center;
}
.stat:nth-child(1) { border-top: 3px solid var(--yellow); }
.stat:nth-child(2) { border-top: 3px solid var(--orange); }
.stat:nth-child(3) { border-top: 3px solid var(--teal); }
.stat:nth-child(4) { border-top: 3px solid var(--pink); }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 1.7rem; color: white; display: block; }
.stat-lbl { font-size: 11px; color: #5a7a8a; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-cta {
  background: var(--orange); color: white; padding: 18px 40px; border-radius: 50px;
  font-weight: 800; font-size: 1.1rem; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 26px rgba(232,101,10,0.4); transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { transform: translateY(-3px); background: var(--yellow); color: var(--navy); }

/* ══════════════ SECTIONS ══════════════ */
.container { max-width: 1100px; margin: 0 auto; }
.section { padding: 78px 20px; }
.section.alt { background: white; }
.section.dark { background: var(--navy); }
.section.dark .section-title { color: white; }
.section.dark .section-sub { color: #7a8fa8; }
.section-tag {
  display: inline-block; background: var(--orange); color: white;
  font-family: 'Fredoka One', cursive; font-size: 12px;
  padding: 4px 14px; border-radius: 6px; margin-bottom: 12px;
}
.tag-teal { background: var(--teal); }
.tag-purple { background: var(--purple); }
.section-title {
  font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2; margin-bottom: 10px;
}
.section-sub { font-size: 1rem; color: #888; margin-bottom: 30px; line-height: 1.7; }

/* ══════════════ FEATURES ══════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: white; border: 2px solid transparent; border-radius: 20px; padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.section.alt .feat-card { background: var(--cream); }
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
.feat-card:nth-child(1) { border-color: var(--teal); }
.feat-card:nth-child(2) { border-color: var(--yellow); }
.feat-card:nth-child(3) { border-color: var(--orange); }
.feat-card:nth-child(4) { border-color: var(--pink); }
.feat-card:nth-child(5) { border-color: var(--purple); }
.feat-card:nth-child(6) { border-color: var(--green); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: white;
}
.fi-1 { background: var(--teal); }
.fi-2 { background: var(--yellow); }
.fi-3 { background: var(--orange); }
.fi-4 { background: var(--pink); }
.fi-5 { background: var(--purple); }
.fi-6 { background: var(--green); }
.feat-card h3 { font-weight: 800; margin-bottom: 7px; }
.feat-card p { font-size: 0.87rem; color: #777; line-height: 1.6; }

/* ══════════════ STEPS ══════════════ */
.steps-row { display: flex; position: relative; margin-bottom: 36px; }
.steps-row::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--orange), var(--pink), var(--purple));
}
.step { flex: 1; text-align: center; padding: 0 10px; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: 'Fredoka One', cursive; font-size: 1.5rem;
  color: white; margin: 0 auto 16px; position: relative; z-index: 1; border: 3px solid var(--navy);
}
.sn-1 { background: var(--teal); }
.sn-2 { background: var(--yellow); }
.sn-3 { background: var(--orange); }
.sn-4 { background: var(--pink); }
.sn-5 { background: var(--purple); }
.step h3 { color: white; font-size: 0.88rem; font-weight: 800; margin-bottom: 5px; }
.step p { color: #7a8fa8; font-size: 0.8rem; line-height: 1.5; }

/* Voucher flow */
.voucher-flow {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 30px; text-align: center;
}
.voucher-flow h3 { color: var(--yellow); font-family: 'Fredoka One', cursive; font-size: 1.35rem; margin-bottom: 20px; }
.vf-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.vf-item { padding: 9px 14px; border-radius: 10px; font-size: 0.8rem; font-weight: 800; color: white; }
.vf-1 { background: var(--teal); }
.vf-2 { background: var(--yellow); color: var(--navy); }
.vf-3 { background: var(--orange); }
.vf-4 { background: var(--pink); }
.vf-5 { background: var(--green); }
.vf-arr { color: #444; font-weight: 900; }

/* ══════════════ RUBROS ══════════════ */
.rubros-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 24px; }
.rubro-pill {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px 10px; text-align: center;
  font-weight: 800; font-size: 13px; color: white;
}
.rubro-pill .ri { font-size: 22px; display: block; margin-bottom: 7px; }

/* ══════════════ PLANES ══════════════ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan-card {
  background: white; border: 2px solid #ece4d9; border-radius: 22px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.1); }
.plan-card.hot { border-color: var(--orange); transform: scale(1.04); box-shadow: 0 14px 48px rgba(232,101,10,0.18); }
.plan-card.hot:hover { transform: scale(1.04) translateY(-6px); }
.plan-head { padding: 26px 26px 16px; }
.ph-gratis { background: var(--teal); }
.ph-base { background: var(--orange); }
.ph-fyo { background: var(--navy); }
.plan-badge {
  background: rgba(255,255,255,0.22); color: white; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 50px;
  display: inline-block; margin-bottom: 8px;
}
.plan-name { font-family: 'Fredoka One', cursive; font-size: 1.6rem; color: white; margin-bottom: 6px; }
.plan-tag {
  background: rgba(255,255,255,0.18); color: white; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 800; display: inline-block;
}
.plan-body { padding: 24px 26px; }
.plan-price { margin-bottom: 16px; }
.pp-cur { font-size: 1.1rem; color: #aaa; }
.pp-amt { font-family: 'Fredoka One', cursive; font-size: 2.5rem; color: var(--navy); }
.pp-per { font-size: 0.85rem; color: #aaa; }
.plan-list { list-style: none; margin: 0 0 22px; }
.plan-list li {
  padding: 7px 0; font-size: 0.87rem; border-bottom: 1px solid #f5f0eb;
  display: flex; align-items: flex-start; gap: 10px;
}
.chk {
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; color: white;
}
.chk-gratis { background: var(--teal); }
.chk-base { background: var(--orange); }
.chk-fyo { background: var(--navy); }
.plan-btn {
  display: block; text-align: center; padding: 13px; border-radius: 12px;
  font-weight: 800; font-size: 0.93rem; cursor: pointer; border: none;
  font-family: 'Nunito', sans-serif; transition: transform 0.2s; color: white; text-decoration: none;
}
.btn-gratis { background: var(--teal); }
.btn-base { background: var(--orange); }
.btn-fyo { background: var(--navy); }
.plan-btn:hover { transform: scale(1.03); }

/* ══════════════ WHY ══════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: var(--cream); border-radius: 18px; padding: 22px; transition: transform 0.2s; }
.section.alt .why-card { background: white; }
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: white;
}
.wi-1 { background: var(--teal); }
.wi-2 { background: var(--orange); }
.wi-3 { background: var(--yellow); }
.wi-4 { background: var(--pink); }
.wi-5 { background: var(--purple); }
.wi-6 { background: var(--green); }
.why-card h3 { font-weight: 800; margin-bottom: 6px; }
.why-card p { font-size: 0.87rem; color: #777; line-height: 1.6; }

/* ══════════════ FORMULARIO ══════════════ */
.form-section { background: var(--navy); padding: 78px 20px; text-align: center; }
.form-section .section-title { color: white; margin-bottom: 50px; }
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px;
  max-width: 1000px; margin: 0 auto; text-align: left;
}
.form-copy { color: #8fa8bc; }
.form-copy p { line-height: 1.7; font-size: 1rem; margin-bottom: 14px; }
.form-copy p strong { color: white; }
.fc-badge {
  display: inline-block; background: rgba(245,166,35,0.2); border: 1px solid rgba(245,166,35,0.35);
  color: var(--yellow); padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 800; margin-bottom: 20px;
}
.fc-perks { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.fc-perk { font-size: 0.9rem; font-weight: 700; color: #8fa8bc; }
.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; padding: 12px 20px; border-radius: 50px; font-weight: 800;
  text-decoration: none; font-size: 0.9rem; transition: transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
}
.btn-ig:hover { transform: translateY(-3px); }

/* Form card */
.form-card {
  background: white; border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-header { background: var(--orange); padding: 22px 28px; }
.form-header-title { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: white; }
.form-header-sub { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 4px; }
.form-body { padding: 26px 28px; }
.field-group { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.field-label {
  display: block; font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: #555; margin-bottom: 6px;
}
.field-input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 2px solid #e8e0d8;
  background: #fdf9f5; font-family: 'Nunito', sans-serif; font-size: 0.93rem;
  font-weight: 600; color: var(--navy); outline: none; transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--orange); background: white; }
.field-input::placeholder { color: #bbb; }
.field-select { cursor: pointer; }

/* Password toggle */
.pass-input-wrap { position: relative; display: flex; align-items: center; }
.pass-input-wrap input { flex: 1; padding-right: 44px; }
.pass-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1.1rem;
  line-height: 1; padding: 4px; opacity: 0.5; transition: opacity 0.2s;
}
.pass-toggle:hover { opacity: 1; }

/* TyC */
.tyc-group { margin-top: 8px; }
.tyc-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-size: 13px; color: #555; line-height: 1.5;
}
.tyc-checkbox { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--orange); }
.tyc-label a { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* Error, submit, disclaimer */
.form-error {
  background: #fff0f0; border: 1.5px solid #ffb3b3; border-radius: 10px;
  padding: 10px 14px; font-size: 13px; font-weight: 700; color: #c0392b; margin-bottom: 14px;
}
.form-submit {
  width: 100%; padding: 16px; background: var(--orange); border: none; border-radius: 12px;
  color: white; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: transform 0.2s, background 0.2s;
  box-shadow: 0 6px 20px rgba(232,101,10,0.35);
}
.form-submit:hover { background: var(--yellow); color: var(--navy); transform: scale(1.02); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-disclaimer { font-size: 12px; color: #aaa; text-align: center; margin-top: 10px; line-height: 1.5; }

/* Success */
.form-success {
  background: white; border-radius: 22px; padding: 50px 36px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: #777; line-height: 1.7; }
.success-thanks { margin-top: 12px; font-weight: 700; color: var(--navy); }

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: #060c12; color: #666; text-align: center;
  padding: 24px 20px; font-size: 13px; font-weight: 600;
}
.footer a { color: var(--yellow); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ══════════════ COOKIE BANNER ══════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy);
  color: white; padding: 16px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; z-index: 400;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3); font-size: 14px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; line-height: 1.5; color: #ccc; }
.cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 9px 20px; border-radius: 50px; border: none; font-weight: 700;
  font-size: 13px; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.cookie-accept { background: var(--teal); color: var(--navy); }
.cookie-btns button:not(.cookie-accept) { background: transparent; color: #ccc; border: 1px solid #444; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 768px) {
  .nav { padding: 12px 18px; }
  .nav-back { display: none; }
  .feat-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .rubros-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .plan-card.hot { transform: none; }
  .steps-row { flex-wrap: wrap; gap: 18px; }
  .steps-row::before { display: none; }
  .step { flex: 0 0 45%; }
  .form-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rubros-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
}
