/* -------------------- GOOGLE FONTS -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,700;0,800;0,900;1,800&family=Barlow:wght@400;500;600;700;800&family=Dancing+Script:wght@700&display=swap');
 
/* -------------------- VARIABLES -------------------- */
:root {
  --orange:      #F26522;
  --orange-dark: #C94E10;
  --green:       #1DB233;
  --green-dark:  #0E621C;
  --green-mid:   #17962A;
  --dark:        #131313;
  --dark2:       #1f1f1f;
  --white:       #FFFFFF;
  --cream:       #FFF8F3;
  --gray:        #6b7280;
  --gray-light:  #f3f4f6;
  --border:      rgba(0,0,0,0.10);
 
  --font-title:  'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-script: 'Dancing Script', cursive;
 
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 12px 32px rgba(0,0,0,0.14);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.20);
 
  --container:   1140px;
}
 
/* -------------------- RESET / BASE -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
 
.container {
  max-width: var(--container);
  width: 92%;
  margin: 0 auto;
}
 
/* -------------------- UTILITIES -------------------- */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.center  { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.tag-orange {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.tag-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.accent-orange { color: var(--orange); }
.accent-green  { color: var(--green); }
 
/* -------------------- TOPBAR -------------------- */
.topbar {
  background: var(--dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}
.topbar__right { display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.toplink {
  opacity: .85;
  transition: opacity .15s;
  font-weight: 600;
}
.toplink:hover { opacity:1; text-decoration:underline; }
.pill-orange {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
 
/* -------------------- HEADER -------------------- */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo { width: 46px; height: 46px; object-fit: contain; }
.brand__name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
  color: var(--green-dark);
}
.brand__sub {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}
.brand__feria-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange), #e55a12);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 3px;
  text-transform: uppercase;
}
 
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark2);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav a:hover {
  background: var(--gray-light);
  color: var(--green-dark);
}
 
.header__cta { display:flex; gap:10px; align-items:center; flex-shrink:0; }
 
/* Burger */
.burger {
  display: none;
  width: 44px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
 
/* Mobile nav */
.mobile {
  background: #fff;
  border-top: 1px solid var(--border);
}
.mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0 18px;
}
.mobile__inner a {
  font-weight: 700;
  font-size: 15px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile__inner a:hover { background: var(--gray-light); }
 
/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--full  { width: 100%; }
 
.btn--orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(242,101,34,.32);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(242,101,34,.40);
}
 
.btn--green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(29,178,51,.28);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
 
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
 
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--dark);
}
.btn--ghost:hover { background: var(--gray-light); }
 
.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
 
/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center top;
  opacity: .18;
  filter: saturate(1.2);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(14,98,28,.85) 0%,
    rgba(19,19,19,.70) 50%,
    rgba(242,101,34,.25) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}
 
/* Hero text */
.hero__edition {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__edition::before {
  content:'';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
 
.hero__date {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  margin-bottom: 6px;
}
 
.hero__title {
  line-height: .95;
  margin-bottom: 8px;
}
.hero__title .line1 {
  display: block;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 100px;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: -2px;
}
.hero__title .line2 {
  display: block;
  font-family: var(--font-script);
  font-size: 68px;
  color: #fff;
  line-height: 1.1;
}
.hero__title .line3 {
  display: block;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
}
 
.hero__lead {
  font-size: 17px;
  opacity: .9;
  max-width: 52ch;
  margin: 18px 0 24px;
  line-height: 1.65;
}
 
.hero__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 40px;
  color: var(--green);
  line-height: 1;
}
.hero__stat-label {
  font-size: 13px;
  opacity: .8;
  font-weight: 600;
}
 
.hero__ctas { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:24px; }
 
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: .75;
}
.hero__trust svg { flex-shrink:0; }
 
/* Form card */
.hero__card { width: 100%; }
.card {
  background: #fff;
  color: var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.card__head {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 22px 22px 16px;
  color: #fff;
}
.card__eyebrow {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 6px;
}
.card__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 6px;
}
.card__subtitle { font-size: 13.5px; opacity: .85; margin:0; }
 
/* -------------------- FORM -------------------- */
.form { padding: 18px 20px 20px; }
.form label { display:block; margin-bottom:10px; }
.form label > span {
  display: block;
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 5px;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form__row { display:flex; gap:10px; }
.col { flex:1; min-width:0; }
 
input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29,178,51,.15);
}
 
.check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 14px !important;
}
.check input { width:auto; margin-top:3px; flex-shrink:0; }
.check span { font-size: 12.5px !important; font-weight: 600 !important; color: #374151 !important; }
 
/* -------------------- SECTIONS -------------------- */
.section { padding: 80px 0; }
.section--dark {
  background: var(--dark);
  color: #fff;
}
.section--orange {
  background: var(--orange);
  color: #fff;
}
.section--green {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
}
.section--cream { background: var(--cream); }
.section--gray  { background: var(--gray-light); }
 
.section__head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 8px 0 12px;
}
.section__head p { font-size: 17px; opacity: .75; max-width: 52ch; margin: 0 auto; }
 
/* -------------------- COUNTDOWN -------------------- */
.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.countdown-block {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  min-width: 90px;
}
.countdown-block__num {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 54px;
  line-height: 1;
  color: var(--orange);
}
.countdown-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 4px;
}
 
/* -------------------- WHY ATTEND -------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.icon--orange { background: rgba(242,101,34,.12); }
.icon--green  { background: rgba(29,178,51,.12); }
.icon--dark   { background: rgba(19,19,19,.08); }
.feature-card h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
}
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }
 
/* -------------------- STANDS / PLANES -------------------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-card--featured {
  border-color: var(--orange);
  transform: scale(1.03);
}
.plan-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-card__head {
  padding: 22px 22px 16px;
  background: var(--gray-light);
}
.plan-card--featured .plan-card__head {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
}
.plan-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-card--featured .plan-badge {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.plan-card__name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 24px;
}
.plan-card__price {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 36px;
  color: var(--orange);
  margin-top: 4px;
}
.plan-card--featured .plan-card__price { color: #fff; }
.plan-card__body { padding: 18px 22px 22px; }
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #374151;
}
.plan-feat::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(29,178,51,.12);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}
 
/* -------------------- PROCESO / STEPS -------------------- */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.step-card:hover { box-shadow: var(--shadow-sm); }
.step-num {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 5px;
}
.step-body p { color: var(--gray); font-size: 14.5px; }
 
/* -------------------- ÉNFASIS -------------------- */
.emphasis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.emphasis-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: background .2s, transform .2s;
}
.emphasis-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}
.emphasis-card__icon { font-size: 38px; margin-bottom: 12px; }
.emphasis-card h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 6px;
}
.emphasis-card p { font-size: 14.5px; opacity: .8; }
 
/* -------------------- FAQ -------------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
details {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
details[open] {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,178,51,.10);
}
summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  padding: 16px 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gray);
  transition: transform .2s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); color: var(--orange); }
details p { margin: 0 18px 16px; color: var(--gray); font-size: 15px; line-height: 1.65; }
 
/* -------------------- TICKER / MARQUEE -------------------- */
.ticker {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker__item { padding: 0 32px; }
.ticker__sep { opacity: .5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
/* -------------------- ADMIN PANEL -------------------- */
.admin-panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}
.admin-panel__head {
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-panel__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 18px;
}
.admin-panel__body { overflow-x: auto; }
.registros-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.registros-table th {
  background: var(--gray-light);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
  white-space: nowrap;
}
.registros-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
  vertical-align: middle;
}
.registros-table tr:last-child td { border-bottom: none; }
.registros-table tr:hover td { background: #fafafa; }
.badge-tipo {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.badge-stand { background: rgba(242,101,34,.12); color: var(--orange-dark); }
.badge-visitante { background: rgba(29,178,51,.12); color: var(--green-dark); }
.badge-empresa { background: rgba(14,98,28,.12); color: var(--green-dark); }
 
/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 52px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand { display:flex; gap:12px; align-items:center; margin-bottom:16px; }
.footer__brand img { width:46px; height:46px; object-fit:contain; }
.footer__brand-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  line-height: 1.1;
}
.footer__brand-sub { font-size: 12px; opacity: .6; }
.footer__desc { font-size: 14px; opacity: .7; line-height: 1.7; max-width: 36ch; }
.footer__contact { margin-top: 16px; }
.footer__contact a {
  display: block;
  font-size: 14px;
  opacity: .85;
  margin-bottom: 5px;
  transition: opacity .15s;
}
.footer__contact a:hover { opacity: 1; color: var(--orange); }
.footer__col-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .5px;
  margin-bottom: 14px;
  color: var(--orange);
  text-transform: uppercase;
}
.footer__links { display:flex; flex-direction:column; gap:8px; }
.footer__links a { font-size:14px; opacity:.75; transition:opacity .15s, color .15s; }
.footer__links a:hover { opacity:1; color: var(--green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: .6;
}
 
/* -------------------- FAB WhatsApp -------------------- */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .15s, box-shadow .15s;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
 
/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 520px; }
  .hero__title .line1 { font-size: 80px; }
  .hero__title .line2 { font-size: 54px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid    { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 768px) {
  .header__cta { display: none; }
  .burger { display: inline-flex; }
  .nav    { display: none; }
 
  .hero { min-height: auto; }
  .hero__inner { padding: 44px 0 36px; }
  .hero__title .line1 { font-size: 64px; }
  .hero__title .line2 { font-size: 44px; }
  .section { padding: 56px 0; }
  .section__head h2 { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-wrap    { grid-template-columns: 1fr; }
  .emphasis-grid { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; gap: 24px; }
}
 
@media (max-width: 480px) {
  .topbar__inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .form__row { flex-direction: column; }
  .hero__title .line1 { font-size: 52px; }
  .hero__title .line2 { font-size: 36px; }
  .hero__stats { gap: 16px; }
  .countdown-block { padding: 14px 18px; }
  .countdown-block__num { font-size: 40px; }
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px 18px;
  border-radius: 12px;
  margin: 0 20px 15px;
  font-weight: 800;
  font-size: 15px;
  border-left: 5px solid #1DB233;
}

#inscripcion .inscripcion-dos-columnas {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 50px !important;
}

#inscripcion .inscripcion-texto {
  width: 42% !important;
  text-align: left !important;
}

#inscripcion .inscripcion-texto h2 {
  font-family: var(--font-title);
  font-size: 54px !important;
  line-height: 1 !important;
  text-transform: uppercase;
  margin: 12px 0 !important;
}

#inscripcion .inscripcion-texto p {
  font-size: 18px !important;
  color: var(--gray);
  margin-bottom: 25px !important;
}

#inscripcion .inscripcion-botones {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
}

#inscripcion .inscripcion-formulario {
  width: 52% !important;
  max-width: 560px !important;
}

@media (max-width: 900px) {
  #inscripcion .inscripcion-dos-columnas {
    flex-direction: column !important;
  }

  #inscripcion .inscripcion-texto,
  #inscripcion .inscripcion-formulario {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  #inscripcion .inscripcion-botones {
    justify-content: center !important;
  }
}

/* ================= POPUP REGISTRO EXITOSO - MINIMAL PREMIUM ================= */

.popup-exito{
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 12, .72);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

.popup-exito-contenido{
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 34px 32px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
    border: 1px solid rgba(0,0,0,.06);
    animation: popupSuave .28s ease-out;
}

.popup-icono{
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #E9F8ED;
    color: #1DB233;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

.popup-exito h2{
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1;
    color: #111827;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.popup-exito p{
    font-family: var(--font-body);
    color: #5f6673;
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0 auto 26px;
    max-width: 360px;
}

.popup-exito button{
    background: #F26522;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 800;
    cursor: pointer;
    min-width: 150px;
    box-shadow: 0 10px 22px rgba(242,101,34,.24);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.popup-exito button:hover{
    background: #e45b18;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(242,101,34,.30);
}

.popup-exito button:active{
    transform: translateY(0);
}

@keyframes popupSuave{
    from{
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media(max-width: 520px){
    .popup-exito-contenido{
        max-width: 92%;
        padding: 32px 24px 28px;
        border-radius: 18px;
    }

    .popup-icono{
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .popup-exito h2{
        font-size: 28px;
    }

    .popup-exito p{
        font-size: 15.5px;
    }

    .popup-exito button{
        width: 100%;
    }
}
/* ================= HERO VIDEO PREMIUM ================= */

.hero__inner{
    display:grid;
    grid-template-columns:55% 45%;
    gap:100px;
    align-items:center;
}

.hero-content{
    max-width:720px;
}

.hero__video{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    width:100%;
}

.video-showcase{
    position:relative;
    width:100%;
    max-width:800px;
    margin-left:auto;
}

.video-glow{
    position:absolute;
    inset:-25px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(242,101,34,.25),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(29,178,51,.20),
            transparent 40%
        );

    filter:blur(30px);
    opacity:.75;
    z-index:0;
}

.video-frame{
    position:relative;
    z-index:2;
    width:100%;
    overflow:hidden;
    border-radius:24px;
    background:#111;

    box-shadow:
        0 35px 90px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.15);

    transition:.25s ease;
}

.video-frame:hover{
    transform:translateY(-5px);

    box-shadow:
        0 45px 120px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.25);
}

.video-frame::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:3;
    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            transparent 30%
        );
}

.video-frame iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

.video-caption{
    display:none !important;
}

/* ================= PANTALLAS MUY GRANDES ================= */

@media(min-width:1400px){

    .hero__inner{
        grid-template-columns:58% 52%;
        gap:35px;
    }

    .video-showcase{
        max-width:700px;
    }

    .video-frame iframe{
        height:400px;
    }

}

/* ================= LAPTOP ================= */

@media(max-width:1200px){

    .hero__inner{
        grid-template-columns:58% 42%;
        gap:70px;
    }

    .video-showcase{
        max-width:600px;
    }

    .video-frame iframe{
        height:380px;
    }

}

/* ================= TABLET ================= */

@media(max-width:1024px){

    .hero__inner{
        grid-template-columns:1fr;
        gap:40px;
    }

    .video-showcase{
        max-width:760px;
        margin:0 auto;
    }

    .video-frame iframe{
        width:100%;
        height:auto;
        aspect-ratio:16/9;
    }

}

/* ================= MOVIL ================= */

@media(max-width:768px){

    .video-showcase{
        max-width:100%;
    }

    .video-frame{
        border-radius:18px;
    }

    .video-frame::before{
        border-radius:18px;
    }

}

/* ================= TESTIMONIOS INSTAGRAM ================= */

.instagram-grid{
  display:grid;
  grid-template-columns: repeat(3, 300px);
  gap:24px;
  justify-content:center;
  align-items:start;
  margin-top:40px;
}

.instagram-grid .instagram-media{
  width:120px !important;
  min-width:300px !important;
  max-width:300px !important;
  border-radius:20px !important;
  overflow:hidden !important;
  box-shadow:0 14px 35px rgba(0,0,0,.10) !important;
}

/* TABLET */
@media(max-width:1024px){
  .instagram-grid{
    grid-template-columns: repeat(2, 300px);
  }
}

/* MÓVIL */
@media(max-width:700px){
  .instagram-grid{
    grid-template-columns:1fr;
  }

  .instagram-grid .instagram-media{
    width:100% !important;
    min-width:0 !important;
    max-width:340px !important;
    margin:0 auto !important;
  }
}


.form-section-title{
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--green-dark);
  margin: 22px 0 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-bottom: 2px solid rgba(29,178,51,.18);
  padding-bottom: 8px;
}

.form-note{
  background: rgba(242,101,34,.10);
  border-left: 4px solid var(--orange);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: #7a3413;
  font-weight: 700;
  margin: 8px 0 18px;
}


/* ==================================================
   HERO FERIA 2026 + VIDEO AJUSTADO
================================================== */

.hero__inner{
  display:grid;
  grid-template-columns: 48% 52%;
  gap: 50px;
  align-items:center;
}

/* BLOQUE IZQUIERDO */
.hero-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  width:100%;
  padding-left:0;
}

.hero-image-title{
  width:100%;
  max-width:620px;
  margin:0 0 -35px 0;
  line-height:0;
}

.hero-image-title img{
  width:100%;
  height:auto;
  display:block;
  margin:0;
  padding:0;
}

.hero__lead{
  max-width:620px;
  margin:10 0 20px 0;
  text-align:center;
  font-size:clamp(8px,100vw,15px);
  line-height:1.65;
}

.hero__ctas{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:18px;
  margin-top:8px;
  flex-wrap:wrap;
}

.hero__ctas .btn{
  min-width:220px;
}

/* VIDEO DERECHO MÁS ANCHO */
.hero__video{
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  width:100%;
}

.video-showcase{
  position:relative;
  width:100%;
  max-width:880px;
  margin-left:auto;
}

.video-glow{
  position:absolute;
  inset:-25px;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,101,34,.25), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(29,178,51,.20), transparent 40%);
  filter:blur(30px);
  opacity:.75;
  z-index:0;
}

.video-frame{
  position:relative;
  z-index:2;
  width:100%;
  overflow:hidden;
  border-radius:24px;
  background:#111;
  box-shadow:
    0 35px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.15);
  transition:.25s ease;
}

.video-frame:hover{
  transform:translateY(-5px);
  box-shadow:
    0 45px 120px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.25);
}

.video-frame iframe{
  width:100%;
  height:440px;
  border:none;
  display:block;
}

.video-caption{
  display:none !important;
}

/* PANTALLAS GRANDES */
@media(min-width:1400px){

  .hero__inner{
    grid-template-columns: 46% 54%;
    gap:55px;
  }

  .hero-image-title{
    max-width:650px;
  }

  .video-showcase{
    max-width:960px;
  }

  .video-frame iframe{
    height:500px;
  }
}

/* TABLET */
@media(max-width:1024px){

  .hero__inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero-content{
    align-items:center;
    text-align:center;
  }

  .hero-image-title{
    max-width:520px;
    margin:0 auto -30px;
  }

  .hero__lead{
    margin:0 auto 28px;
    text-align:center;
  }

  .hero__ctas{
    justify-content:center;
  }

  .video-showcase{
    max-width:760px;
    margin:0 auto;
  }

  .video-frame iframe{
    height:auto;
    aspect-ratio:16/9;
  }
}

/* MÓVIL */
@media(max-width:768px){

  .hero-image-title{
    max-width:390px;
    margin:0 auto -18px;
  }

  .hero__ctas{
    flex-direction:column;
    width:100%;
  }

  .hero__ctas .btn{
    width:100%;
    max-width:320px;
  }

  .video-frame{
    border-radius:18px;
  }
}

/* ==========================================
   LOGO FERIA HEADER
========================================== */

.brand--feria{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.brand__feria-logo{
    width:auto;
    height:80px;
    display:block;
    object-fit:contain;
    transition:all .25s ease;
}

.brand__feria-logo:hover{
    transform:scale(1.03);
}

/* Tablet */
@media(max-width:768px){

    .brand__feria-logo{
        height:36px;
    }

}

/* Celulares */
@media(max-width:480px){

    .brand__feria-logo{
        height:30px;
    }

}

/* ==========================================
   FOOTER CORREGIDO
========================================== */

.footer{
  background:#111;
  color:#fff;
  padding-top:60px;
}

.footer__grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:55px;
  align-items:flex-start;
}

.footer__col--brand{
  max-width:420px;
}

.footer__brand{
  width:100%;
  max-width:340px;
  height:80px;
  overflow:hidden;
  display:flex;
  align-items:center;
  margin-bottom:20px;
}

.footer__logo-feria{
  width:520px !important;
  max-width:none !important;
  height:100px;
  display:block;
  transform:translateX(-110px) scale(1.75);
  transform-origin:left center;
}

.footer__desc{
  max-width:420px;
  color:#c9c9c9;
  line-height:1.8;
  font-size:15px;
}

.footer__col-title{
  color:#F26522;
  font-size:18px;
  text-transform:uppercase;
  margin-bottom:18px;
  font-weight:900;
}

.footer__links,
.footer__contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer__links a,
.footer__contact a{
  color:#d1d5db;
  text-decoration:none;
  font-weight:600;
}

.footer__links a:hover,
.footer__contact a:hover{
  color:#1DB233;
}

.footer__bottom{
  margin-top:45px;
  border-top:1px solid rgba(255,255,255,.10);
  padding:22px 0;
}

.footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#b7b7b7;
  font-size:14px;
}

/* Tablet */
@media(max-width:768px){

  .footer__grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:35px;
  }

  .footer__col--brand{
    max-width:100%;
  }

  .footer__brand{
    margin:0 auto 18px;
  }

  .footer__desc{
    margin:0 auto;
  }

  .footer__bottom-inner{
    flex-direction:column;
    text-align:center;
  }
}

/* Celular */
@media(max-width:480px){

  .footer__brand{
    max-width:300px;
    height:78px;
  }

  .footer__logo-feria{
    width:460px !important;
    transform:translateX(-95px) scale(1.65);
  }
}


/* ==========================================
   SECCIÓN MAPA DE STANDS
========================================== */

.mapa-section{
  background:#fff7f0;
}

.mapa-card{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:34px;
  align-items:center;
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 24px 65px rgba(0,0,0,.10);
  border:1px solid rgba(0,0,0,.06);
}

.mapa-card__image{
  overflow:hidden;
  border-radius:22px;
  background:#f3f4f6;
  border:1px solid rgba(0,0,0,.06);
}

.mapa-card__image img{
  width:100%;
  height:auto;
  display:block;
  transition:.3s ease;
}

.mapa-card__image:hover img{
  transform:scale(1.03);
}

.mapa-card__content h3{
  font-family:var(--font-title);
  font-size:34px;
  color:var(--green-dark);
  text-transform:uppercase;
  line-height:1;
  margin:0 0 14px;
}

.mapa-card__content p{
  color:var(--gray);
  line-height:1.7;
  margin-bottom:24px;
  font-size:16px;
}

/* Tablet */
@media(max-width:900px){

  .mapa-card{
    grid-template-columns:1fr;
  }

  .mapa-card__content{
    text-align:center;
  }

}

/* Celular */
@media(max-width:520px){

  .mapa-card{
    padding:18px;
    border-radius:22px;
  }

  .mapa-card__content h3{
    font-size:27px;
  }

}
.mapa-section{
    background:#ffffff;
}
.section--dark .section__head p{
    color:rgba(255,255,255,.75);
}

.section--dark .section__head h2{
    color:#fff;
}

.section--dark .tag-orange{
    background:#F26522;
    color:#fff;
}


/* ==========================================
   CTA FINAL
========================================== */

.cta-final{
    background:#ffffff;
    padding:90px 0;
}

.cta-final__box{
    max-width:900px;
    margin:auto;
    text-align:center;

    background:linear-gradient(
        135deg,
        #0E621C,
        #06310f
    );

    border-radius:30px;
    padding:70px 50px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.15);
}

.cta-final h2{
    color:#fff;
    font-size:58px;
    line-height:1;
    margin:18px 0;
}

.cta-final p{
    color:rgba(255,255,255,.85);
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.cta-final__actions{
    margin-top:35px;

    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

@media(max-width:768px){

    .cta-final{
        padding:60px 0;
    }

    .cta-final__box{
        padding:40px 25px;
    }

    .cta-final h2{
        font-size:38px;
    }

    .cta-final p{
        font-size:17px;
    }

}

/* ==========================================
   INSCRIPCION PREMIUM
========================================== */

.inscripcion-page{
  min-height:100vh;
  background:
    radial-gradient(circle at top left, rgba(29,178,51,.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(242,101,34,.14), transparent 32%),
    #f7f8fa;
  padding:26px;
}

.inscripcion-top{
  max-width:1240px;
  margin:0 auto 18px;
}

.inscripcion-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:#111827;
  text-decoration:none;
  font-weight:900;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.inscripcion-back:hover{
  color:#F26522;
  transform:translateY(-2px);
}

.inscripcion-layout{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:28px;
  align-items:start;
}

.inscripcion-hero{
  position:sticky;
  top:26px;
  min-height:640px;
  border-radius:34px;
  padding:42px;
  background:
    linear-gradient(135deg, rgba(14,98,28,.95), rgba(17,24,39,.96)),
    url('../assets/feria2026.png') center bottom / 90% auto no-repeat;
  color:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.18);
  overflow:hidden;
}

.inscripcion-hero__content{
  position:relative;
  z-index:2;
}

.inscripcion-hero h1{
  font-family:var(--font-title);
  font-size:64px;
  line-height:.95;
  text-transform:uppercase;
  margin:22px 0;
}

.inscripcion-hero p{
  color:rgba(255,255,255,.80);
  font-size:18px;
  line-height:1.7;
}

.inscripcion-steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:34px;
}

.inscripcion-steps div{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:16px;
}

.inscripcion-steps strong{
  display:block;
  font-size:26px;
  color:#F26522;
}

.inscripcion-steps span{
  font-weight:800;
  color:#fff;
}

.form-card--premium{
  border-radius:34px;
  padding:38px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.10);
  border:1px solid rgba(0,0,0,.06);
}

.form-intro{
  margin-bottom:28px;
  padding-bottom:22px;
  border-bottom:1px solid #e5e7eb;
}

.form-intro h2{
  font-family:var(--font-title);
  font-size:42px;
  text-transform:uppercase;
  color:#0E621C;
  margin:0 0 8px;
}

.form-intro p{
  color:#6b7280;
  margin:0;
  font-weight:700;
}

.form-section{
  margin-bottom:30px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-premium label{
  margin-bottom:18px;
}

.form-premium label span{
  font-size:12px;
  font-weight:900;
  color:#374151;
}

.form-premium small{
  color:#F26522;
  font-weight:900;
}

.form-premium input,
.form-premium select,
.form-premium textarea{
  min-height:52px;
  border-radius:14px;
  border:1.5px solid #d1d5db;
  background:#f9fafb;
}

.form-premium textarea{
  padding-top:14px;
}

.btn-submit--premium{
  height:58px;
  border-radius:16px;
  background:linear-gradient(135deg,#F26522,#ff7a2f);
  box-shadow:0 18px 40px rgba(242,101,34,.28);
  transition:.2s ease;
}

.btn-submit--premium:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 50px rgba(242,101,34,.36);
}

@media(max-width:1000px){
  .inscripcion-layout{
    grid-template-columns:1fr;
  }

  .inscripcion-hero{
    position:relative;
    top:0;
    min-height:auto;
  }
}

@media(max-width:700px){
  .inscripcion-page{
    padding:16px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .form-card--premium{
    padding:24px;
    border-radius:24px;
  }

  .inscripcion-hero{
    padding:30px;
    border-radius:24px;
  }

  .inscripcion-hero h1{
    font-size:42px;
  }

  .form-intro h2{
    font-size:32px;
  }
}

/* ==========================================
   CHECKBOX Y BOTÓN FORMULARIO
========================================== */

.form-premium .check{
  display:grid !important;
  grid-template-columns:24px 1fr;
  align-items:flex-start;
  gap:14px;
  background:#f9fafb;
  border:1.5px solid #e5e7eb;
  border-radius:16px;
  padding:18px 20px;
  margin-bottom:14px;
}

.form-premium .check input{
  width:20px !important;
  height:20px !important;
  margin:0 !important;
  accent-color:#1DB233;
  cursor:pointer;
}

.form-premium .check span{
  margin:0 !important;
  color:#1f2937;
  font-size:14px !important;
  line-height:1.5;
  font-weight:800;
  text-transform:none !important;
  letter-spacing:0 !important;
}

.btn-submit,
.btn-submit--premium{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:58px;
  margin-top:28px;
  border:none !important;
  border-radius:16px !important;
  background:linear-gradient(135deg,#F26522,#ff7a2f) !important;
  color:#fff !important;
  font-size:17px !important;
  font-weight:900 !important;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(242,101,34,.28);
  transition:.2s ease;
}

.btn-submit:hover,
.btn-submit--premium:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 50px rgba(242,101,34,.36);
}

/* ==========================================
   MODAL ÉXITO
========================================== */

.modal-exito{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);

  display:none;
  justify-content:center;
  align-items:center;

  z-index:99999;

  padding:20px;
}

.modal-exito.show{
  display:flex;
}

.modal-exito__box{
  background:#fff;
  width:100%;
  max-width:520px;

  border-radius:30px;

  padding:45px 35px;

  text-align:center;

  animation:modalPop .3s ease;
}

.modal-exito__icon{
  width:90px;
  height:90px;

  border-radius:50%;

  background:#1DB233;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:50px;
  font-weight:900;

  margin:0 auto 20px;
}

.modal-exito h2{
  color:#0E621C;
  margin-bottom:15px;
  font-size:34px;
}

.modal-exito p{
  color:#6b7280;
  line-height:1.7;
  margin-bottom:25px;
}

.btn-modal{
  border:none;
  background:#F26522;
  color:#fff;

  padding:14px 30px;

  border-radius:14px;

  font-size:16px;
  font-weight:700;

  cursor:pointer;
}

@keyframes modalPop{

  from{
    opacity:0;
    transform:translateY(20px) scale(.95);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }

}


:root{
  --orange:#FF751F;
  --green:#19B333;
  --white:#FFFFFF;
  --black:#000000;
}

.cta-marquee{
  width:100%;
  min-height:54px;
  background:var(--orange);
  color:var(--white);
  overflow:hidden;
  display:flex;
  align-items:center;
  position:relative;
  z-index:20;
}

.cta-marquee__track{
  display:flex;
  gap:38px;
  width:max-content;
  animation:ctaMarquee 28s linear infinite;
  padding-left:20px;
  padding-right:260px;
}

.cta-marquee__track span{
  color:var(--white);
  font-weight:900;
  text-transform:uppercase;
  white-space:nowrap;
  font-size:15px;
  letter-spacing:.5px;
}

.cta-marquee__btn{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  height:38px;
  padding:0 18px;
  border-radius:999px;
  background:var(--green);
  color:var(--white);
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
  animation:whatsappPulse 1.8s infinite;
}

@keyframes ctaMarquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@keyframes whatsappPulse{
  0%{ box-shadow:0 0 0 0 rgba(25,179,51,.65); }
  70%{ box-shadow:0 0 0 12px rgba(25,179,51,0); }
  100%{ box-shadow:0 0 0 0 rgba(25,179,51,0); }
}

.btn--green{
  background:var(--green) !important;
  color:var(--white) !important;
}

.btn--green:hover,
.btn--orange:hover{
  transform:translateY(-3px);
}

.btn--xl{
  min-height:64px;
  padding:0 34px;
  border-radius:18px;
  font-size:18px;
  font-weight:900;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:0 0 22px;
}

.hero-badges span{
  background:var(--black);
  color:var(--white);
  border:2px solid var(--orange);
  border-radius:999px;
  padding:9px 14px;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
}

.section--black{
  background:var(--black);
  color:var(--white);
}

.section__head--light h2,
.section__head--light p{
  color:var(--white) !important;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.benefit-card{
  background:var(--black);
  border:2px solid var(--green);
  border-radius:24px;
  padding:28px 22px;
  text-align:center;
  color:var(--white);
}

.benefit-card span{
  font-size:40px;
  display:block;
  margin-bottom:12px;
}

.benefit-card h3{
  color:var(--orange);
  font-size:22px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.benefit-card p{
  color:var(--white);
  line-height:1.6;
}

.fab{
  background:var(--green) !important;
  color:var(--white) !important;
}

@media(max-width:900px){
  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-marquee{
    min-height:70px;
  }

  .cta-marquee__btn{
    right:10px;
    height:34px;
    padding:0 12px;
    font-size:11px;
  }

  .cta-marquee__track{
    padding-right:210px;
  }
}

@media(max-width:520px){
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .cta-marquee__track span{
    font-size:13px;
  }

  .hero-badges{
    flex-direction:column;
    align-items:center;
  }
}

.ticker {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #FF751F;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 20;
}

.ticker__inner {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px 0;
  animation: tickerMove 35s linear infinite;
}

.ticker__item {
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #FFFFFF;
}



.ticker:hover .ticker__inner {
  animation-play-state: paused;
}

@keyframes tickerMove {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: #19B333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 0 25px rgba(25, 179, 51, .55);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: whatsappPulse 1.8s infinite;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(25, 179, 51, .8);
}

.fab__icon {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 179, 51, .65);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(25, 179, 51, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(25, 179, 51, 0);
  }
}

@media (max-width: 768px) {
  .ticker__inner {
    gap: 30px;
    animation-duration: 14s;
  }

  .ticker__item {
    font-size: 14px;
  }

  .ticker__item::after {
    margin-left: 30px;
  }

  .fab {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .fab__icon {
    width: 30px;
    height: 30px;
  }
}

.ticker{
    cursor:pointer;
}

/*=========================================
EMPRESAS CONFIRMADAS
=========================================*/

.empresas-section{

    padding:110px 0;

    background:
    radial-gradient(circle at top,#ffffff,#fafafa);

}

.empresas-section .section__head{

    max-width:900px;

    margin:auto;

    margin-bottom:65px;

}

.empresas-section h2{

    font-size:56px;

    line-height:1;

    text-transform:uppercase;

}

.empresas-section h2 span{

    color:#F26522;

}

.empresas-section p{

    font-size:18px;

    color:#666;

}

/*=========================================

GRID

=========================================*/

.logos-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:28px;

}

/*=========================================

TARJETA

=========================================*/

.logo-box{

    aspect-ratio:1/1;

    background:#ffffff;

    border-radius:22px;

    border:1px solid #ececec;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:
    0 6px 20px rgba(0,0,0,.05);

}

/*=========================================

LOGO

=========================================*/

.logo-box img{

    width:100%;

    height:100%;

    object-fit:contain;

    object-position:center;

    display:block;

    transition:.35s;

}

/*=========================================

HOVER

=========================================*/

.logo-box:hover{

    transform:translateY(-8px);

    border-color:#F26522;

    box-shadow:

    0 18px 45px rgba(0,0,0,.12);

}

.logo-box:hover img{

    transform:scale(1.06);

}

/*=========================================

RESPONSIVE

=========================================*/

@media(max-width:1200px){

.logos-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:900px){

.logos-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:700px){

.logos-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.logo-box{

padding:18px;

border-radius:18px;

}

}

@media(max-width:480px){

.logos-grid{

grid-template-columns:repeat(2,1fr);

}

.logo-box{

padding:14px;

}

}.empresas-section{
    background:#fff;
}

.logos-wall{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:24px;
    margin-top:50px;

}

.logo-card{

    height:140px;
    background:#fff;
    border-radius:22px;
    border:1px solid #ececec;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:25px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.logo-card:hover{

    transform:translateY(-8px);

    border-color:#ff751f;

    box-shadow:0 20px 40px rgba(255,117,31,.18);

}

.logo-card img{

    max-width:100%;
    max-height:70px;

    object-fit:contain;

    transition:.35s;

    filter:grayscale(15%);

}

.logo-card:hover img{

    transform:scale(1.08);

    filter:none;

}

/* Tablet */

@media(max-width:992px){

.logo-card{

height:120px;

}

}

/* Celular */

@media(max-width:576px){

.logos-wall{

grid-template-columns:repeat(2,1fr);

gap:16px;

}

.logo-card{

height:100px;

padding:18px;

}

.logo-card img{

max-height:50px;

}

}
/*=========================================
EMPRESAS CONFIRMADAS
=========================================*/

.empresas-section{

    padding:110px 0;

    background:
    radial-gradient(circle at top,#ffffff,#fafafa);

}

.empresas-section .section__head{

    max-width:900px;

    margin:auto;

    margin-bottom:65px;

}

.empresas-section h2{

    font-size:56px;

    line-height:1;

    text-transform:uppercase;

}

.empresas-section h2 span{

    color:#F26522;

}

.empresas-section p{

    font-size:18px;

    color:#666;

}

/*=========================================

GRID

=========================================*/

.logos-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:28px;

}

/*=========================================

TARJETA

=========================================*/

.logo-box{

    aspect-ratio:1/1;

    background:#ffffff;

    border-radius:22px;

    border:1px solid #ececec;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:
    0 6px 20px rgba(0,0,0,.05);

}

/*=========================================

LOGO

=========================================*/

.logo-box img{

    width:100%;

    height:100%;

    object-fit:contain;

    object-position:center;

    display:block;

    transition:.35s;

}

/*=========================================

HOVER

=========================================*/

.logo-box:hover{

    transform:translateY(-8px);

    border-color:#F26522;

    box-shadow:

    0 18px 45px rgba(0,0,0,.12);

}

.logo-box:hover img{

    transform:scale(1.06);

}

/*=========================================

RESPONSIVE

=========================================*/

@media(max-width:1200px){

.logos-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:900px){

.logos-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:700px){

.logos-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.logo-box{

padding:18px;

border-radius:18px;

}

}

@media(max-width:480px){

.logos-grid{

grid-template-columns:repeat(2,1fr);

}

.logo-box{

padding:14px;

}

}

/* ==================================================
   EMPRESAS CONFIRMADAS - CARRUSEL DOBLE FILA PREMIUM
================================================== */

.empresas-section{
  padding:95px 0;
  background:
    radial-gradient(circle at top center, #ffffff 0%, #ffffff 45%, #fff7f1 100%);
  overflow:hidden;
}

.empresas-head{
  max-width:880px;
  margin:0 auto 50px;
}

.empresas-head h2{
  font-family:var(--font-title);
  font-size:clamp(30px, 3.8vw, 48px);
  line-height:1;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:-.5px;
  color:#101010;
}

.empresas-head h2 span{
  display:block;
  color:#F26522;
}

.empresas-head p{
  max-width:560px;
  margin:14px auto 0;
  font-size:17px;
  color:#686868;
  line-height:1.6;
}

/* CONTENEDOR GENERAL */

.empresas-slider{
  position:relative;
  max-width:1220px;
  margin:0 auto;
  padding:26px 38px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* VENTANA */

.empresas-window{
  width:100%;
  overflow:hidden;
}

/* TRACK */

.empresas-track{
    display:flex;
    width:100%;
    will-change:transform;
    transition:transform .55s cubic-bezier(.22,.61,.36,1);
}

/* PÁGINA */

.empresas-page{
    flex:0 0 100%;
    min-width:100%;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  grid-template-rows:repeat(2, 1fr);
  gap:18px;
}

/* TARJETAS */

.logo-box{
  aspect-ratio:1/1;
  background:#ffffff;
  border-radius:18px;
  border:1px solid #ececec;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.055);
  transition:.28s ease;
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
  transition:.28s ease;
}

.logo-box:hover{
  transform:translateY(-5px);
  border-color:#F26522;
  box-shadow:0 18px 36px rgba(242,101,34,.16);
}

.logo-box:hover img{
  transform:scale(1.05);
}

/* ESPACIOS VACÍOS */

.logo-box--empty{
  opacity:0;
  pointer-events:none;
}

/* FLECHAS */

.empresas-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  border:none;
  background:#ffffff;
  color:#F26522;
  font-size:42px;
  line-height:1;
  cursor:pointer;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 35px rgba(0,0,0,.12);
  transition:.25s ease;
}

.empresas-arrow:hover{
  background:#F26522;
  color:#ffffff;
  transform:translateY(-50%) scale(1.06);
}

.empresas-arrow--prev{
  left:-34px;
}

.empresas-arrow--next{
  right:-34px;
}

/* DOTS */

.empresas-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:11px;
  margin-top:28px;
}

.empresas-dots button{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:#d6d6d6;
  cursor:pointer;
  transition:.25s ease;
}

.empresas-dots button.active{
  background:#F26522;
  transform:scale(1.3);
}

/* CTA INFERIOR */

.empresas-cta{
  max-width:980px;
  margin:48px auto 0;
  background:#ffffff;
  border-radius:24px;
  padding:28px 42px;
  display:grid;
  grid-template-columns:86px 1fr auto;
  align-items:center;
  gap:26px;
  box-shadow:
    0 22px 55px rgba(242,101,34,.13),
    0 10px 30px rgba(0,0,0,.05);
  border:1px solid rgba(242,101,34,.08);
}

.empresas-cta__icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff7a1f,#F26522);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  box-shadow:0 14px 30px rgba(242,101,34,.28);
}

.empresas-cta__content h3{
  font-size:25px;
  line-height:1.15;
  color:#111111;
  margin:0 0 6px;
  font-weight:900;
}

.empresas-cta__content p{
  font-size:16.5px;
  color:#4b4b4b;
  margin:0;
  line-height:1.55;
  max-width:560px;
}

/* TABLET */

@media(max-width:1050px){

  .empresas-slider{
    max-width:900px;
  }

  .empresas-page{
    grid-template-columns:repeat(4, 1fr);
  }



  .empresas-cta{
    grid-template-columns:80px 1fr;
  }

  .empresas-cta .btn{
    grid-column:1 / -1;
    justify-self:center;
  }
}

/* MÓVIL */

@media(max-width:700px){

  .empresas-section{
    padding:70px 0;
  }

  .empresas-head{
    margin-bottom:34px;
  }

  .empresas-head h2{
    font-size:clamp(28px, 9vw, 36px);
  }

  .empresas-head p{
    font-size:15.5px;
  }

  .empresas-slider{
    padding:20px 18px;
    border-radius:22px;
  }

  .empresas-page{
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
  }



  .logo-box{
    padding:14px;
    border-radius:16px;
  }

  .empresas-arrow{
    width:46px;
    height:46px;
    font-size:34px;
  }

  .empresas-arrow--prev{
    left:-14px;
  }

  .empresas-arrow--next{
    right:-14px;
  }

  .empresas-cta{
    padding:28px 22px;
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }

  .empresas-cta__icon{
    width:72px;
    height:72px;
    font-size:32px;
  }

  .empresas-cta__content h3{
    font-size:22px;
  }

  .empresas-cta__content p{
    font-size:15.5px;
  }

  .empresas-cta .btn{
    width:100%;
    max-width:300px;
  }
}