/* =========================================================
   FERIA EMPRESARIAL COAL – 6ta Edición
   styles.css
   PALETA ÚNICA: #FF751F · #19B333 · #FFFFFF · #000000
========================================================= */

/* -------------------- GOOGLE FONTS -------------------- */
/*
  --font-display : Anton     → FERIA  (Degular Black alt)
  --font-script  : Pacifico  → Empresarial (Avallon Alt)
  --font-title   : Barlow Condensed → subtítulos, UI
  --font-body    : Barlow           → textos generales
*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&family=Barlow+Condensed:ital,wght@0,400;0,700;0,800;0,900;1,800&family=Barlow:wght@400;500;600;700;800&display=swap');

/* -------------------- VARIABLES -------------------- */
:root {
  --orange:      #FF751F;
  --orange-dk:   #cc5a12;          /* naranja oscuro = naranja base más negro */
  --green:       #19B333;
  --green-dk:    #0f7220;          /* verde oscuro = verde base más negro */
  --black:       #000000;
  --black-soft:  #111111;
  --black-mid:   #222222;
  --white:       #FFFFFF;
  --white-off:   #F5F5F5;          /* blanco ligeramente grisáceo para fondos alt */
  --border:      rgba(0,0,0,0.12);

  --font-display: 'Anton', sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-title:   'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-md:   0 12px 32px rgba(0,0,0,0.18);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.22);

  --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(--black);
  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: var(--white);
  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: var(--white);
  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(--black);
  color: var(--white);
  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.4); }
}
.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: var(--white);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* -------------------- HEADER -------------------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--green);
  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(--black);
}
.brand__sub {
  font-size: 12px;
  color: var(--black-mid);
  font-weight: 500;
  opacity: .7;
}
.brand__feria-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  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(--black);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav a:hover {
  background: var(--green);
  color: var(--white);
}

.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: 2px solid var(--black);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav */
.mobile {
  background: var(--white);
  border-top: 2px solid var(--green);
}
.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, color .15s;
}
.mobile__inner a:hover {
  background: var(--green);
  color: var(--white);
}

/* -------------------- 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: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255,117,31,.35);
}
.btn--orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: 0 6px 24px rgba(255,117,31,.45);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(25,179,51,.30);
}
.btn--green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  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: .15;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25,179,51,.80) 0%,
    rgba(0,0,0,.75) 45%,
    rgba(255,117,31,.30) 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,.80);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero__title { line-height: .95; margin-bottom: 8px; }

.hero__title .line1 {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 108px;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: .92;
}
.hero__title .line2 {
  display: block;
  font-family: var(--font-script);
  font-size: 72px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
}
.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: .92;
  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: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.card__head {
  background: var(--green);
  padding: 22px 22px 16px;
  color: var(--white);
}
.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: var(--black);
  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 rgba(0,0,0,.20);
  background: var(--white-off);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(25,179,51,.18);
}

.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: var(--black) !important; }

/* -------------------- SECTIONS -------------------- */
.section { padding: 80px 0; background: var(--white); }
.section--dark  { background: var(--black); color: var(--white); }
.section--orange { background: var(--orange); color: var(--white); }
.section--green  { background: var(--green);  color: var(--white); }
.section--alt    { background: var(--white-off); }

.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,.10);
  border: 1px solid rgba(255,255,255,.20);
  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: .75;
  margin-top: 4px;
}

/* -------------------- FEATURE CARDS -------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 2px solid var(--black-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.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: var(--orange); }
.icon--green  { background: var(--green); }
.icon--dark   { background: var(--black); }
.feature-card h3 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--black);
}
.feature-card p { color: var(--black-mid); font-size: 15px; line-height: 1.6; opacity: .8; }

/* -------------------- PLANS -------------------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--black-soft);
  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(--white-off);
}
.plan-card--featured .plan-card__head {
  background: var(--orange);
  color: var(--white);
}
.plan-badge {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  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: var(--white);
}
.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: var(--white); }
.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: var(--black);
}
.plan-feat::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

/* -------------------- STEPS -------------------- */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: var(--white);
  border: 2px solid var(--black-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  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;
  color: var(--black);
}
.step-body p { color: var(--black-mid); font-size: 14.5px; opacity: .8; }

/* -------------------- EMPHASIS CARDS -------------------- */
.emphasis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.emphasis-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: background .2s, transform .2s;
}
.emphasis-card:hover {
  background: rgba(255,255,255,.18);
  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: .85; }

/* -------------------- FAQ -------------------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
details {
  background: var(--white);
  border: 2px solid rgba(0,0,0,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
details[open] {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25,179,51,.12);
}
summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  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(--black-mid);
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); color: var(--orange); }
details p { margin: 0 18px 16px; color: var(--black-mid); font-size: 15px; line-height: 1.65; opacity: .8; }

/* -------------------- TICKER -------------------- */
.ticker {
  background: var(--orange);
  color: var(--white);
  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;
  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: var(--white);
  border: 2px solid var(--black-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}
.admin-panel__head {
  background: var(--black);
  color: var(--white);
  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(--white-off);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--black-soft);
  color: var(--black-mid);
  white-space: nowrap;
}
.registros-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--black);
  vertical-align: middle;
}
.registros-table tr:last-child td { border-bottom: none; }
.registros-table tr:hover td { background: var(--white-off); }
.badge-tipo {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.badge-stand    { background: var(--orange); color: var(--white); }
.badge-visitante { background: var(--green);  color: var(--white); }
.badge-empresa  { background: var(--black);  color: var(--white); }

/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--black);
  color: var(--white);
  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: var(--white);
  line-height: 1.1;
}
.footer__brand-sub { font-size: 12px; opacity: .6; }
.footer__desc { font-size: 14px; opacity: .75; 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, color .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,.12);
  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: var(--green);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(25,179,51,.45);
  z-index: 200;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.fab:hover {
  transform: scale(1.08);
  background: var(--green-dk);
  box-shadow: 0 12px 32px rgba(25,179,51,.55);
}

/* -------------------- SUCCESS MESSAGE -------------------- */
.success-message {
  display: none;
  background: var(--green);
  color: var(--white);
  padding: 15px 18px;
  border-radius: 12px;
  margin: 0 20px 15px;
  font-weight: 800;
  font-size: 15px;
  border-left: 5px solid var(--black);
}

/* -------------------- INSCRIPCION DOS COLUMNAS -------------------- */
#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(--black-mid);
  margin-bottom: 25px !important;
  opacity: .8;
}
#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 EXITO -------------------- */
.popup-exito {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.80);
  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: var(--white);
  border-radius: 22px;
  padding: 38px 34px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--green);
  animation: popupSuave .28s ease-out;
}
.popup-icono {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  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: var(--black); margin: 0 0 14px;
  text-transform: uppercase; letter-spacing: -.5px;
}
.popup-exito p {
  font-family: var(--font-body);
  color: var(--black-mid); font-size: 16.5px; line-height: 1.65;
  margin: 0 auto 26px; max-width: 360px; opacity: .8;
}
.popup-exito button {
  background: var(--orange);
  color: var(--white);
  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(255,117,31,.28);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.popup-exito button:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,117,31,.38);
}
@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 { padding: 32px 24px 28px; border-radius: 18px; }
  .popup-icono { width: 58px; height: 58px; font-size: 30px; }
  .popup-exito h2 { font-size: 28px; }
  .popup-exito button { width: 100%; }
}

/* -------------------- HERO VIDEO -------------------- */
.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(255,117,31,.30), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(25,179,51,.25), 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: var(--black);
  box-shadow: 0 35px 90px rgba(0,0,0,.50), 0 0 0 2px var(--orange);
  transition: .25s ease;
}
.video-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 45px 120px rgba(0,0,0,.60), 0 0 0 2px var(--green);
}
.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,.08), transparent 30%);
}
.video-frame iframe {
  width: 100%; height: 450px; border: none; display: block;
}
.video-caption { display: none !important; }

@media (min-width: 1400px) {
  .video-showcase { max-width: 700px; }
  .video-frame iframe { height: 400px; }
}
@media (max-width: 1200px) {
  .video-showcase { max-width: 600px; }
  .video-frame iframe { height: 380px; }
}
@media (max-width: 1024px) {
  .video-showcase { max-width: 760px; margin: 0 auto; }
  .video-frame iframe { width: 100%; height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .video-showcase { max-width: 100%; }
  .video-frame { border-radius: 18px; }
  .video-frame::before { border-radius: 18px; }
}

/* -------------------- INSTAGRAM GRID -------------------- */
.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: var(--shadow-md) !important;
}
@media (max-width: 1024px) {
  .instagram-grid { grid-template-columns: repeat(2, 300px); }
}
@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 EXTRAS -------------------- */
.form-section-title {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--green);
  margin: 22px 0 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
}
.form-note {
  background: rgba(255,117,31,.12);
  border-left: 4px solid var(--orange);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--black);
  font-weight: 700;
  margin: 8px 0 18px;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 520px; }
  .hero__title .line1 { font-size: 86px; }
  .hero__title .line2 { font-size: 58px; }
  .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: 68px; }
  .hero__title .line2 { font-size: 48px; }
  .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: 56px; }
  .hero__title .line2 { font-size: 38px; }
  .hero__stats { gap: 16px; }
  .countdown-block { padding: 14px 18px; }
  .countdown-block__num { font-size: 40px; }
}

