/* ============================================================
   Runawasi Travel — Formulario Promoción Escolar
   style.css — Light Mode (SaaS / Startup moderno 2026)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  /* Identidad visual peruana */
  --rojo-carmesi:   #e30032; /* Rojo vibrante intenso (cochinilla) */
  --oro-inca:       #f29400; /* Amarillo-naranja (sol inca) */
  --verde-menta:    #00a650; /* Verde fresco (hoja de coca / WhatsApp) */
  --crema-sillar:   #f9f6f0; /* Blanco-crema suave (piedra de Arequipa) */

  --primary:        var(--oro-inca);
  --primary-dark:   #cc7a00;
  --primary-light:  #fff8eb;
  --blue:           #1d4ed8;
  --blue-mid:       #2563eb;
  --blue-light:     #eff6ff;
  --blue-border:    #bfdbfe;
  --bg-page:        #1a0a00;
  --bg-gradient-1:  #c0392b;
  --bg-gradient-2:  #e67e22;
  --bg-card:        #F9F9F7;
  --bg-input:       #f8fafc;
  --border:         #e2e8f0;
  --border-focus:   #2563eb;
  --text-heading:   #0f172a;
  --text-body:      #1e293b;
  --text-muted:     #475569;
  --text-label:     #0f172a;
  --error:          #dc2626;
  --error-bg:       #fef2f2;
  --success:        #059669;
  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-full:    100px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-hover:   0 8px 28px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-btn:     0 4px 14px rgba(232,160,36,.35);
  --shadow-btn-hov: 0 8px 24px rgba(232,160,36,.50);
  --container-max:  1152px;
  --transition:     0.2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  background: var(--rojo-carmesi);
  color: var(--text-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Particles (subtle, light) ──────────────────────────── */
.bg-particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.06), transparent 70%);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Hero Header ────────────────────────────────────────── */
.hero-header {
  position: relative;
  height: 480px;
  background: url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=1800&auto=format&fit=crop&q=80') center 40%/cover no-repeat;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
/* Much lighter overlay — let Machu Picchu breathe */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.45) 65%,
    var(--rojo-carmesi) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.logo-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--radius-full);
  padding: .35rem 1rem;
  font-size: .85rem; font-weight: 700; color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 500;
  letter-spacing: .2px; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.tag {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  padding: .28rem .8rem;
  font-size: .78rem; font-weight: 600; color: #fff;
  backdrop-filter: blur(4px);
}
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; }
.hero-wave svg { display: block; width: 100%; height: 55px; }

/* ── Intro Banner ───────────────────────────────────────── */
.intro-banner {
  position: relative; z-index: 1;
  max-width: var(--container-max); margin: 2rem auto;
  padding: 0 2rem;
}
.intro-inner {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.intro-icon { font-size: 1.8rem; flex-shrink: 0; }
.intro-text { font-size: .9rem; color: var(--text-body); line-height: 1.65; }
.intro-text strong { color: var(--text-heading); display: block; margin-bottom: .2rem; font-size: .95rem; font-weight: 700; }

/* ── Form Container ─────────────────────────────────────── */
.form-container {
  position: relative; z-index: 1;
  max-width: var(--container-max); margin: 2rem auto 5rem;
  padding: 0 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}

/* ── Form Sections (cards blancas) ──────────────────────── */
.form-section {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.form-section:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
  border-color: var(--blue-border);
}
.section-header {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1.5px solid var(--border);
  background: rgba(0, 0, 0, 0.015);
}
.section-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--rojo-carmesi); opacity: .35;
  line-height: 1; flex-shrink: 0;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem; font-weight: 800;
  color: #374151; margin-bottom: .2rem;
  letter-spacing: -.2px;
}
.section-desc { font-size: .85rem; color: #4b5563; font-weight: 500; }

/* ── Grid ───────────────────────────────────────────────── */
.fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
}
.full-width { grid-column: 1; }

@media (min-width: 600px) {
  .fields-grid { grid-template-columns: 1fr 1fr; }
  .fields-grid.three-cols { grid-template-columns: repeat(3,1fr); }
  .full-width { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .fields-grid { padding: 2rem 2.5rem; gap: 1.5rem; }
  .section-header { padding: 1.4rem 2.5rem; }
  .group-summary { margin: 0 2.5rem 2rem; }
}

/* ── Field Groups ───────────────────────────────────────── */
.field-group { display: flex; flex-direction: column; gap: .45rem; }

.field-label {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  font-size: .84rem; font-weight: 600; color: var(--text-label);
  cursor: default;
}
.label-icon { font-size: 1rem; }
.required { color: var(--primary); font-size: .9rem; }
.optional-badge {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: #059669; font-size: .7rem; font-weight: 600;
  border-radius: var(--radius-full); padding: .1rem .55rem;
}

/* ── Inputs ─────────────────────────────────────────────── */
.field-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid #94a3b8; /* slate-300 — more defined */
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 1rem; font-family: 'Inter', sans-serif;
  padding: .9rem 1.2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.field-input::placeholder { color: #94a3b8; font-size: .9rem; }
.field-input:hover { border-color: #475569; }
.field-input:focus {
  border: 2px solid var(--border-focus);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
  background: #fff;
}
.field-input.error {
  border-color: var(--error);
  background: var(--error-bg);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.field-input.valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
/* Wrapper for valid icon overlay */
.field-wrapper { position: relative; }
.field-valid-icon {
  position: absolute; right: .75rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem; color: var(--success);
  pointer-events: none;
  opacity: 0; transition: opacity var(--transition);
}
.field-valid-icon.visible { opacity: 1; }
.field-textarea { resize: vertical; min-height: 110px; }
.field-error { font-size: .78rem; color: var(--error); display: none; align-items: center; gap: .3rem; }
.field-error.visible { display: flex; }
.char-count { font-size: .75rem; color: var(--text-muted); text-align: right; }
.field-hint { font-size: .78rem; color: var(--text-muted); font-style: italic; }

/* ── Food Cards (Alimentación — naranja al seleccionar) ─ */
.food-cards-wrap { padding: 1.75rem 2rem; }
@media (min-width: 1024px) { .food-cards-wrap { padding: 2rem 2.5rem; } }
.food-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: .6rem;
}
.food-card { cursor: pointer; }
.food-card input[type="radio"] { display: none; }
.food-card-inner {
  background: var(--bg-input);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.food-card-inner:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,36,.15);
}
.food-card input:checked ~ .food-card-inner {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(232,160,36,.2), 0 6px 20px rgba(232,160,36,.12);
  transform: translateY(-2px);
}
.food-emoji { font-size: 2.2rem; }
.food-card-inner > strong { font-size: .95rem; font-weight: 700; color: var(--text-heading); }
.food-card-inner > p { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }
.food-badge {
  display: inline-block;
  background: #f1f5f9; border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .2rem .65rem;
  font-size: .7rem; font-weight: 700; color: var(--text-muted);
  margin-top: .25rem;
}
.food-badge.popular { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.food-badge.premium { background: #fdf4ff; border-color: #e9d5ff; color: #7e22ce; }

/* ── Checklist Items (Experiencias) ─────────────────── */
.checklist-wrap { padding: 1.25rem 2rem 1.75rem; display: flex; flex-direction: column; gap: .65rem; }
@media (min-width: 1024px) { .checklist-wrap { padding: 1.5rem 2.5rem 2rem; } }
.check-item { cursor: pointer; }
.check-item input[type="checkbox"] { display: none; }
.check-item-inner {
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all var(--transition);
}
.check-item-inner:hover { border-color: var(--primary); background: var(--primary-light); }
.check-item input:checked ~ .check-item-inner {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: inset 3px 0 0 var(--primary);
}
.check-item-icon { font-size: 1.6rem; flex-shrink: 0; }
.check-item-inner > div > strong { font-size: .9rem; color: var(--text-heading); }
.check-item-inner > div > p { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }
.checkmark-box {
  margin-left: auto; flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: transparent; background: #fff;
  transition: all var(--transition);
}
.check-item input:checked ~ .check-item-inner .checkmark-box {
  background: var(--primary); border-color: var(--primary); color: #fff;
}

/* Phone prefix */
.input-with-prefix { display: flex; }
.prefix {
  background: var(--blue-light);
  border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: .72rem .8rem;
  color: var(--blue); font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; white-space: nowrap;
}
.input-with-prefix .field-input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* Select */
.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); color: var(--blue); pointer-events: none;
}
.field-select { cursor: pointer; }
.field-select option { background: #fff; color: var(--text-heading); }

/* ── Counters ───────────────────────────────────────────── */
.counter-control {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.counter-control:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.counter-btn {
  background: var(--blue-light); border: none;
  color: var(--blue); font-size: 1.1rem; font-weight: 700;
  min-width: 32px; min-height: 32px;
  padding: 0 0.5rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.counter-btn:hover { background: var(--blue-border); }
.counter-input {
  flex: 1; border: none !important; border-radius: 0 !important;
  text-align: center; box-shadow: none !important; background: #fff;
  color: var(--text-heading); font-weight: 600;
  -moz-appearance: textfield;
}
.counter-input::-webkit-inner-spin-button,
.counter-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.group-summary {
  margin: 0 2rem 1.75rem;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-body);
}
.group-summary strong { color: var(--blue); font-size: 1.1rem; }

/* ── Destination Cards ──────────────────────────────────── */
.destination-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px,1fr));
  gap: .75rem;
}
.dest-card { cursor: pointer; }
.dest-card input[type="radio"] { display: none; }
.dest-card-inner {
  background: var(--bg-input);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1rem .75rem;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  text-align: center; transition: all var(--transition);
}
.dest-card-inner:hover { border-color: var(--blue-mid); background: var(--blue-light); transform: translateY(-2px); }
.dest-card input:checked ~ .dest-card-inner {
  border-color: var(--blue-mid);
  background: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  transform: translateY(-2px);
}
.dest-emoji { font-size: 1.9rem; }
.dest-name { font-size: .82rem; font-weight: 700; color: var(--text-heading); }
.dest-sub { font-size: .7rem; color: var(--text-muted); }
.otro-destino-wrap { margin-top: .75rem; }

/* ── Radio Pills ────────────────────────────────────────── */
.radio-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { cursor: pointer; }
.pill input[type="radio"] { display: none; }
.pill span {
  display: inline-flex; align-items: center; min-height: 44px;
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--radius-full); padding: .45rem 1.1rem;
  font-size: .85rem; font-weight: 600; color: var(--text-body);
  transition: all var(--transition);
}
.pill input:checked ~ span {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.pill span:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ── Toggle Options (alimentación) ─────────────────────── */
.toggle-options { display: flex; flex-direction: column; gap: .6rem; }
.toggle-option { cursor: pointer; }
.toggle-option input[type="radio"] { display: none; }
.toggle-inner {
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .1rem;
  transition: all var(--transition);
}
.toggle-inner:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.toggle-option input:checked ~ .toggle-inner {
  border-color: var(--blue-mid); background: var(--blue-light);
  box-shadow: inset 3px 0 0 var(--blue-mid);
}
.toggle-icon { font-size: 1.6rem; flex-shrink: 0; }
.toggle-inner > div > strong { font-size: .92rem; color: var(--text-heading); }
.toggle-inner > div > p { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

/* ── Checkbox Cards ─────────────────────────────────────── */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
@media (max-width: 600px) { .checkbox-grid { grid-template-columns: 1fr; } }
.check-card { cursor: pointer; }
.check-card input[type="checkbox"] { display: none; }
.check-card-inner {
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: .85rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  transition: all var(--transition);
}
.check-card-inner:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.check-card input:checked ~ .check-card-inner { border-color: var(--blue-mid); background: var(--blue-light); }
.check-icon { font-size: 1.4rem; flex-shrink: 0; }
.check-card-inner > div > strong { font-size: .84rem; color: var(--text-heading); }
.check-card-inner > div > p { font-size: .73rem; color: var(--text-muted); margin-top: .1rem; }
.checkmark {
  margin-left: auto; width: 22px; height: 22px;
  border: 1.5px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: transparent; flex-shrink: 0;
  transition: all var(--transition); background: #fff;
}
.check-card input:checked ~ .check-card-inner .checkmark {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

/* ── Photo Options ──────────────────────────────────────── */
.photo-options { display: flex; flex-direction: column; gap: .6rem; }
.photo-option { cursor: pointer; }
.photo-option input[type="radio"] { display: none; }
.photo-inner {
  background: var(--bg-input); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all var(--transition);
}
.photo-inner:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.photo-option input:checked ~ .photo-inner {
  border-color: var(--blue-mid); background: var(--blue-light);
  box-shadow: inset 3px 0 0 var(--blue-mid);
}
.photo-icon { font-size: 1.5rem; flex-shrink: 0; }
.photo-inner > div > strong { font-size: .92rem; color: var(--text-heading); }
.photo-inner > div > p { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.radio-mark {
  margin-left: auto; flex-shrink: 0;
  width: 20px; height: 20px; border: 1.5px solid var(--border);
  border-radius: 50%; position: relative; transition: all var(--transition);
  background: #fff;
}
.photo-option input:checked ~ .photo-inner .radio-mark {
  border-color: var(--blue-mid);
  background: var(--blue-mid);
  box-shadow: inset 0 0 0 4px #fff;
}

/* ── Submit Area ────────────────────────────────────────── */
.submit-area {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: .5rem 0 2.5rem;
}
.submit-disclaimer { font-size: .78rem; color: var(--text-muted); text-align: center; max-width: 420px; }
.submit-btn {
  position: relative; overflow: hidden;
  background: var(--rojo-carmesi);
  border: none; border-radius: var(--radius-full);
  padding: 1.1rem 3rem; min-height: 68px;
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  font-size: 1.2rem; font-weight: 800; color: #ffffff; cursor: pointer;
  width: 100%; max-width: 560px;
  box-shadow: var(--shadow-btn);
  letter-spacing: .2px;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: 'Outfit', sans-serif; touch-action: manipulation;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hov); }
.submit-btn:active { transform: translateY(0); }

.submit-microcopy {
  font-size: .78rem; color: var(--text-muted);
  text-align: center; max-width: 460px; line-height: 1.55;
}
.submit-microcopy strong { color: var(--text-body); font-weight: 600; }
.btn-icon { font-size: 1.2rem; }
.btn-ripple {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15); opacity: 0; border-radius: var(--radius-full);
  transition: opacity .3s;
}
.submit-btn:hover .btn-ripple { opacity: 1; }

/* ── Success Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,23,42,.5); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem;
  max-width: 480px; width: 100%; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  animation: slideUp .35s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-card h2 { font-family: 'Outfit', sans-serif; font-size: 1.6rem; color: var(--text-heading); margin-bottom: .75rem; }
.modal-card p { font-size: .9rem; color: var(--text-body); line-height: 1.65; }
.modal-details {
  background: var(--bg-input); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem; margin: 1.25rem 0;
  font-size: .82rem; color: var(--text-body); text-align: left;
  display: flex; flex-direction: column; gap: .35rem;
}
.modal-details span strong { color: var(--blue); }
.modal-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none; border-radius: var(--radius-full);
  padding: .75rem 2.25rem; font-size: .95rem; font-weight: 700;
  color: #fff; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: opacity var(--transition); box-shadow: var(--shadow-btn);
}
.modal-btn:hover { opacity: .9; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 2rem;
}
.footer-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
}
.footer-logo { font-family: 'Outfit', sans-serif; font-weight: 800; color: #fff; font-size: .95rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.6); }

/* ── Radio List (estilo corporativo — alimentación) ──────── */
.radio-list-wrap {
  padding: 1.25rem 2rem 1.75rem;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .radio-list-wrap { padding: 1.5rem 2.5rem 2rem; } }
.radio-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  border-bottom: none;
  cursor: pointer;
  transition: background var(--transition);
  background: #fff;
}
.radio-row:first-of-type { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.radio-row:nth-last-of-type(2) { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.radio-row:hover { background: var(--blue-light); }
.radio-row:has(input:checked) { background: var(--blue-light); border-color: var(--blue-border); }
.radio-row input[type="radio"] {
  width: 17px; height: 17px; flex-shrink: 0;
  accent-color: var(--blue-mid); cursor: pointer;
}
.radio-row-label { flex: 1; display: flex; flex-direction: column; gap: .1rem; }
.radio-row-label strong { font-size: .9rem; font-weight: 700; color: var(--text-heading); }
.radio-row-label span  { font-size: .78rem; color: var(--text-muted); }
.radio-tag {
  font-size: .7rem; font-weight: 600;
  padding: .18rem .55rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #f1f5f9; color: var(--text-muted);
  white-space: nowrap; flex-shrink: 0;
}
.radio-tag.popular { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.radio-tag.premium { background: #fdf4ff; border-color: #e9d5ff; color: #7e22ce; }
.radio-list-wrap .field-error { margin-top: .6rem; }

/* ── Check List (estilo corporativo — experiencias) ──────── */
.check-list-wrap {
  padding: 1.25rem 2rem 1.75rem;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .check-list-wrap { padding: 1.5rem 2.5rem 2rem; } }
.check-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  border-bottom: none;
  cursor: pointer;
  transition: background var(--transition);
  background: #fff;
}
.check-row:first-of-type { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.check-row:last-of-type  { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.check-row:hover { background: var(--primary-light); }
.check-row:has(input:checked) {
  background: var(--primary-light);
  border-color: #fed7aa;
}
.check-row input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0;
  accent-color: var(--primary); cursor: pointer;
}
.check-row-label { flex: 1; display: flex; flex-direction: column; gap: .1rem; }
.check-row-label strong { font-size: .9rem; font-weight: 700; color: var(--text-heading); }
.check-row-label span  { font-size: .78rem; color: var(--text-muted); }

/* ── Fecha exacta reveal ─────────────────────────────────── */
.fecha-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .3s ease;
}
.fecha-reveal.visible {
  max-height: 120px;
  opacity: 1;
}

/* ── Section divider (subsección dentro de una card) ──────── */
.section-divider {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .75rem 2rem;
  border-top: 1.5px solid var(--border);
  background: rgba(0, 0, 0, 0.015);
}
.section-divider span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #374151;
}
.section-divider small {
  font-size: .82rem; color: #4b5563; font-weight: 500;
}
@media (min-width: 1024px) { .section-divider { padding: .85rem 2.5rem; } }

/* ── Responsive ─────────────────────────────────────────── */
.counter-btn { min-width: 32px; min-height: 32px; }
.pill span { min-height: 44px; }

@media (max-width: 640px) {
  .form-container { padding: 0 1.5rem; }
  .intro-banner { padding: 0 1.5rem; }
  .hero-header { height: 280px; }
  .section-header { padding: 1rem 1.5rem; }
  .fields-grid { padding: 1.5rem; }
  .group-summary { margin: 0 1.5rem 1.5rem; }
  .destination-cards { grid-template-columns: repeat(3,1fr); }
  .submit-btn { max-width: 100%; }
  .section-number { font-size: 1.5rem; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ── Formulario de Promoción: Responsive Fixes ───────────── */
@media (max-width: 1024px) {
  .main-container {
    width: 95% !important;
    height: auto !important;
    flex-direction: column !important;
    margin: 20px auto !important;
    border-radius: 1.5rem !important;
  }

  .main-container section {
    width: 100% !important;
  }

  .main-container section:first-child {
    height: auto !important;
    min-height: 250px;
    padding: 2rem !important;
  }

  .main-container section:last-child {
    height: auto !important;
  }

  /* Ajustar cuadrícula de servicios a 1 columna en móvil */
  .grid.grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0 !important;
  }

  .main-container {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .main-container section:first-child {
    padding: 1.5rem !important;
  }
  
  header {
    padding: 1.5rem !important;
  }
  
  #cotizacionForm > div {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  .px-12, .py-8 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  h1 {
    font-size: 2rem !important;
  }
}

