/* LATAM Brand Protection Summit — Milán 2026
   Design system según 01_design_toolkit.md */

:root {
  --espresso: #281914;
  --cocoa: #3B2D2A;
  --dusk: #4B3742;
  --terracotta: #D98948;
  --amber: #D08350;
  --cotton: #F5EFEA;
  --sand: #A99F9B;
  --dusty: #C8B4B4;

  --c-logo-blue: #3C78D2;
  --c-logo-indigo: #5A5AD2;
  --c-logo-teal: #1E9678;
  --c-logo-green: #3CB45A;
  --c-logo-yellow: #F0B41E;
  --c-logo-orange: #F0781E;
  --c-logo-red: #E0432C;
  --c-logo-magenta: #B45AB4;
  --c-logo-violet: #781E96;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  --shadow-cta: 0 10px 24px -8px rgba(217, 137, 72, 0.5);

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--espresso);
  color: var(--cotton);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
  min-width: 0;
}

/* Anti-overflow guards — never let anything push past the viewport */
section, main, footer, nav { overflow-x: clip; }

html {
  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  word-break: normal;
}
*, *::before, *::after {
  hyphens: manual !important;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  overflow-wrap: break-word;
  word-break: normal;
}
h1, h2, h3, h4, h5, h6, p, span, a, label, li, div.title, div.sub, div.claim, div.item {
  max-width: 100%;
}

/* Grid/flex children need min-width: 0 to allow text wrapping */
.cards-grid > *,
.stats-row > *,
.timeline > *,
.form-grid > *,
.indicam-grid > *,
.audiencia-grid > *,
.brands-grid > *,
.form-row > *,
.agenda-row > *,
.footer-grid > *,
.nav-inner > *,
.hero-content > *,
.edition-card > * {
  min-width: 0;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--terracotta); color: var(--espresso); }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--cotton);
}

.display {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cotton);
  max-width: 100%;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cotton);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cotton);
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--terracotta);
}
.h3.on-dark { color: var(--cotton); }
.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--cotton);
  max-width: 640px;
}
.body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--cotton);
}
.body.muted { color: var(--sand); }
.small {
  font-size: 14px;
  line-height: 1.4;
  color: var(--sand);
  font-weight: 500;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  display: block;
}

/* LAYOUT */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  min-width: 0;
}
section {
  padding: 96px 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

.section-espresso { background: var(--espresso); }
.section-cocoa { background: var(--cocoa); }
.section-dusk { background: var(--dusk); }

.section-header {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .h2,
.section-header .h1 { max-width: 780px; margin-left: auto; margin-right: auto; margin-bottom: 16px; }
.section-header .body { max-width: 720px; margin-left: auto; margin-right: auto; color: var(--cotton); opacity: 0.92; }

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(40, 25, 20, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(245, 239, 234, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--cotton);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.nav-logo em { color: var(--terracotta); font-style: normal; }
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav-logo img { height: 32px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cotton);
  transition: color 200ms;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--terracotta); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sand);
}
.lang-switch a { color: var(--sand); transition: color 200ms; }
.lang-switch a.active { color: var(--cotton); }
.lang-switch a:hover { color: var(--terracotta); }
.lang-switch .sep { color: var(--sand); opacity: 0.4; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--cotton);
  padding: 8px;
  border-radius: 4px;
}
.nav-burger svg { width: 24px; height: 24px; }

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform 200ms, background 200ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--espresso);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: #E59A5A;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--cotton);
  border: 1.5px solid rgba(245, 239, 234, 0.35);
}
.btn-secondary:hover {
  background: rgba(245, 239, 234, 0.06);
  border-color: var(--cotton);
}

/* HERO */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(40, 25, 20, 0.3) 0%, rgba(40, 25, 20, 0.85) 100%),
                    url("../images/duomo.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-alt::before {
  background-image: linear-gradient(180deg, rgba(40, 25, 20, 0.45) 0%, rgba(40, 25, 20, 0.92) 100%),
                    url("../images/duomo.jpg");
  background-position: center 40%;
}
.hero-solid { background: var(--dusk); min-height: 60vh; padding: 140px 0 80px; }
.hero-solid::before { display: none; }
.hero-content { max-width: 900px; position: relative; }
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content .display,
.hero-content .h1 { margin-bottom: 20px; }
.hero-content .lead { margin-bottom: 32px; }

/* ECOSYSTEM CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.card {
  padding: 32px;
  background: var(--cocoa);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 180, 180, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms, border-color 250ms;
}
.card-on-cocoa { background: var(--dusk); }
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 137, 72, 0.35);
}
.card .eyebrow { margin-bottom: 4px; }

/* EDITION CARD */
.edition-wrap { padding-left: 24px; padding-right: 24px; }
.edition-card {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.edition-card .left { flex: 1; }
.edition-card .eyebrow { margin-bottom: 12px; }
.edition-card .h2 { margin-bottom: 16px; }
.edition-card .body { max-width: 560px; color: var(--cotton); opacity: 0.9; }

/* TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1px dashed rgba(245, 239, 234, 0.2);
  z-index: 0;
}
.timeline-dot--more {
  width: 8px !important;
  height: 8px !important;
  background: rgba(245, 239, 234, 0.18) !important;
  border: none !important;
  box-shadow: 0 0 0 6px var(--espresso) !important;
  margin-top: 6px;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  background: var(--dusk);
  border: 1px solid var(--dusty);
  box-shadow: 0 0 0 6px var(--espresso);
}
.timeline-dot.active {
  background: var(--terracotta);
  border: none;
  box-shadow: 0 0 0 6px var(--espresso), 0 0 24px rgba(217, 137, 72, 0.5);
}
.timeline-item .year { color: var(--cotton); font-size: 20px; font-weight: 700; font-family: var(--font-display); }
.timeline-item .city { color: var(--sand); font-size: 14px; }

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat {
  padding: 28px;
  background: var(--cocoa);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 180, 180, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--cotton);
  line-height: 1.1;
}
.stat-label {
  color: var(--sand);
  font-size: 14px;
}

/* AGENDA */
.agenda-rows {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agenda-row {
  display: flex;
  gap: 24px;
  padding: 20px 24px;
  background: var(--cocoa);
  border-radius: 12px;
  align-items: center;
  border: 1px solid rgba(200, 180, 180, 0.04);
}
.agenda-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--dusk);
  font-size: 13px;
  font-weight: 600;
  color: var(--cotton);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 68px;
  text-align: center;
}
.agenda-pill.primary {
  background: var(--terracotta);
  color: var(--espresso);
}
.agenda-row .content { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.agenda-row .content .title { color: var(--cotton); font-weight: 500; }
.agenda-row .content .sub { color: var(--sand); font-size: 14px; }
.agenda-row .duration {
  color: var(--sand);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* AUDIENCIA GRID */
.audiencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.audiencia-col {
  padding: 32px;
  background: var(--cocoa);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 180, 180, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audiencia-col .eyebrow { margin-bottom: 8px; }
.audiencia-col ul { display: flex; flex-direction: column; gap: 10px; }
.audiencia-col li { color: var(--cotton); padding: 4px 0; border-bottom: 1px solid rgba(245, 239, 234, 0.06); }
.audiencia-col li:last-child { border-bottom: none; }

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  color: var(--sand);
  font-size: 13px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--cocoa);
  border: 1px solid rgba(200, 180, 180, 0.12);
  color: var(--cotton);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  height: 48px;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-field textarea {
  height: 120px;
  resize: vertical;
  padding: 12px 16px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217, 137, 72, 0.2);
}
.form-field .hint { color: var(--sand); font-size: 12px; }
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--terracotta); margin-top: 2px; }
.form-checkbox label { color: var(--sand); font-size: 14px; line-height: 1.4; }
.form-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-note {
  color: var(--sand);
  font-size: 13px;
  max-width: 420px;
  font-style: italic;
}

.form-sidebar {
  padding: 32px;
  background: var(--cocoa);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 180, 180, 0.08);
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-sidebar .eyebrow { margin-bottom: 4px; }
.form-sidebar .h3 { margin-bottom: 8px; }
.benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 239, 234, 0.06);
}
.benefit:first-of-type { border-top: none; padding-top: 0; }
.benefit .title { color: var(--cotton); font-weight: 500; }
.benefit .small { color: var(--sand); }

/* BRANDS GRID (indicam) */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-card {
  padding: 28px 24px;
  background: var(--dusk);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(200, 180, 180, 0.08);
  transition: border-color 250ms;
}
.brand-card:hover { border-color: var(--dusty); }
.brand-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cotton);
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* INDICAM STATS (sidebar-like) */
.indicam-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: flex-start;
}
.indicam-about { display: flex; flex-direction: column; gap: 20px; }
.indicam-about .eyebrow { margin-bottom: 4px; }
.indicam-about .h2 { margin-bottom: 8px; }
.indicam-stats { display: flex; flex-direction: column; gap: 16px; }

/* BONO (partners) */
.bono {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--espresso);
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 137, 72, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bono .eyebrow { margin-bottom: 0; }
.bono .h1 { color: var(--terracotta); }

/* CTA FINAL */
.cta-final {
  padding: 140px 24px;
  text-align: center;
}
.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.cta-final .lead { margin: 0 auto; text-align: center; }

/* FOOTER */
.footer {
  background: var(--espresso);
  padding: 96px 24px 48px;
  border-top: 1px solid rgba(245, 239, 234, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .eyebrow { margin-bottom: 4px; }
.footer-col .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--cotton);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-col .brand em { color: var(--terracotta); font-style: normal; }
.footer-col .brand img {
  height: 56px;
  width: auto;
  display: block;
}

/* Hero logo lockup */
.hero-logo {
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

/* INDICAM co-brand lockup */
.indicam-lockup {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: rgba(245, 239, 234, 0.04);
  border: 1px solid rgba(245, 239, 234, 0.1);
  border-radius: var(--radius-md);
}
.indicam-lockup img { height: 44px; width: auto; display: block; }
.indicam-lockup img[alt="INDICAM"] {
  filter: brightness(0) invert(1);
  height: 36px;
  opacity: 0.92;
}
.indicam-lockup .sep {
  width: 1px;
  height: 32px;
  background: rgba(245, 239, 234, 0.2);
}
@media (max-width: 640px) {
  .indicam-lockup { padding: 12px 16px; gap: 16px; }
  .indicam-lockup img { height: 32px; }
}
.footer-col .claim { color: var(--cotton); font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.footer-col .body.muted { color: var(--sand); font-size: 15px; max-width: 420px; }
.footer-col a { color: var(--sand); font-size: 14px; transition: color 200ms; }
.footer-col a:hover { color: var(--terracotta); }
.footer-col .text-link { color: var(--terracotta); font-size: 14px; font-weight: 500; }
.footer-col .item { color: var(--cotton); font-size: 15px; margin-bottom: 2px; }
.footer-col .item-disabled { color: var(--sand); font-size: 14px; opacity: 0.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 234, 0.08);
  font-size: 13px;
  color: var(--sand);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-org-link { color: inherit; text-decoration: none; transition: color 0.18s ease; }
.footer-org-link:hover { color: var(--cotton); text-decoration: underline; }

/* UTILS */
.flow > * + * { margin-top: var(--flow-space, 1rem); }
.muted { color: var(--sand); }

/* ANIMATION */
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp 700ms ease-out both; }
  .hero-content > *:nth-child(2) { animation-delay: 80ms; }
  .hero-content > *:nth-child(3) { animation-delay: 160ms; }
  .hero-content > *:nth-child(4) { animation-delay: 240ms; }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .nav-inner { padding: 14px 20px; gap: 16px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 13px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .edition-card { flex-direction: column; align-items: flex-start; gap: 32px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .timeline::before { display: none; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .indicam-grid { grid-template-columns: 1fr; gap: 48px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .audiencia-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; padding: 140px 0 80px; }
  section { padding: 80px 0; }
}

/* Tablet-small / mobile wide */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--espresso);
    padding: 24px;
    border-top: 1px solid rgba(245, 239, 234, 0.08);
    gap: 16px;
  }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-actions { gap: 12px; }
  .nav-cta { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-inner { padding: 12px 16px; }
  .nav-logo { font-size: 16px; }
  .lang-switch { font-size: 12px; }
  .container { padding: 0 16px; }
  .section-header { padding: 0 16px; }
  .cards-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 16px; }
  .stats-row { grid-template-columns: 1fr; gap: 12px; padding: 0 16px; }
  .timeline { grid-template-columns: 1fr; gap: 40px; padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer { padding: 64px 16px 32px; }
  .edition-card { gap: 24px; }
  .edition-wrap { padding-left: 16px; padding-right: 16px; }
  .agenda-row {
    padding: 16px 18px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .agenda-row .duration { width: 100%; padding-left: 82px; margin-top: -4px; }
  .agenda-rows { padding: 0 16px; }
  .form-grid { padding: 0 16px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-sidebar { padding: 28px 24px; }
  .hero {
    min-height: 60vh;
    padding: 120px 0 60px;
    align-items: center;
  }
  .hero-solid { padding: 110px 0 56px; min-height: 0; }
  .hero-content { padding: 0 16px; }
  section { padding: 56px 0; }
  .cta-final { padding: 80px 16px; }
  .brands-grid { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 12px; }
  .indicam-grid { padding: 0 16px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .audiencia-grid { padding: 0 16px; }
  .audiencia-col { padding: 24px; }
  .bono { padding: 28px 20px; margin: 32px 16px 0; }
}

/* ---------- form feedback & turnstile ---------- */
.form-message {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
  display: none;
}
.form-message:not(:empty) { display: block; }
.form-message.is-success {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 137, 72, 0.45);
  color: var(--cotton);
}
.form-message.is-error {
  background: rgba(217, 72, 72, 0.08);
  border: 1px solid rgba(217, 72, 72, 0.5);
  color: #f6c1b1;
}
.form-turnstile {
  min-height: 65px;
  display: flex;
  align-items: center;
}
.form-turnstile .cf-turnstile { max-width: 100%; }
.form-field input:disabled,
.form-field select:disabled,
.form-field textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
