/* ============================================================
   Taquillita — landing
   CSS plano, móvil primero, sin preprocesadores.
   ============================================================ */

:root {
  --bg: #FAF8F3;
  --bg-alt: #F3EFE6;
  --bg-warn: #FFF8E1;
  --fg: #1A1A1A;
  --fg-soft: #555;
  --fg-mute: #8a8575;
  --brand: #2E7D32;
  --brand-hover: #1B5E20;
  --border: #E7E2D5;
  --radius: 10px;
  --max: 1100px;
  --pad: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(40px, 7vw, 72px); }
h2 { font-size: clamp(28px, 4.2vw, 42px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 0.5em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

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

.container.narrow { max-width: 760px; }

/* ================= Botones ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  transition: background-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-icon {
  flex-shrink: 0;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover { background: var(--brand-hover); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn-secondary:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-large {
  padding: 20px 32px;
  font-size: 20px;
}

/* ================= Hero ================= */
.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text .lead {
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text .body {
  color: var(--fg-soft);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 52ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note {
  margin-top: 16px;
  font-size: 15px;
  color: var(--fg-soft);
}
.cta-note a {
  color: var(--fg-soft);
  text-decoration: underline;
}
.cta-note a:hover {
  color: var(--brand);
}

.hero-visual { display: flex; justify-content: center; }

.hero-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* ================= Secciones ================= */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-warn {
  background: var(--bg-warn);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* ================= Grids de tarjetas ================= */
.cards-3, .cards-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--fg-soft); }

/* Steps (cómo funciona) */
.step { text-align: left; }

.step-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.step-num {
  color: var(--brand);
  font-family: 'Fraunces', serif;
  margin-right: 6px;
}

/* ================= "No hace" ================= */
.no-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.no-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 18px 20px;
  border-radius: var(--radius);
}

.no-mark {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #C62828;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}

.note {
  text-align: center;
  margin: 28px auto 0;
  max-width: 640px;
  font-size: 15px;
  color: var(--fg-soft);
  font-style: italic;
}

/* ================= Descarga ================= */
.download {
  text-align: center;
}

.download-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.download .cards-2 { text-align: left; }

.ordered {
  margin: 0;
  padding-left: 20px;
  color: var(--fg-soft);
}
.ordered li {
  margin-bottom: 10px;
}

/* ================= Origen ================= */
.origin {
  margin: 0 0 32px;
  padding: 0;
  color: var(--fg);
  font-size: 18px;
  line-height: 1.7;
}
.origin p { margin-bottom: 18px; }

.contact-card {
  background: var(--bg);
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contact-label {
  font-size: 13px;
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

/* ================= Footer ================= */
.footer {
  padding: 40px 24px 48px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-mute);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer p { margin: 0 0 4px; }

/* ================= Breakpoints ================= */
@media (min-width: 700px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 960px) {
  :root { --pad: 48px; }

  .hero {
    padding: 96px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }

  .section { padding: 112px 0; }

  .hero-img { max-width: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
