:root {
  --teal-950: #032f2d;
  --teal-900: #063f3a;
  --teal-800: #07514c;
  --teal-700: #0c6963;
  --teal-600: #117f78;
  --turquoise: #21b9b1;
  --orange-700: #e86a10;
  --orange-500: #ff8a24;
  --orange-300: #ffb33b;
  --cream: #f7f0e4;
  --paper: #fcfaf5;
  --white: #ffffff;
  --ink: #073b38;
  --muted: #667773;
  --line: rgba(7, 59, 56, 0.12);
  --shadow: 0 22px 60px rgba(3, 47, 45, 0.14);
  --shadow-soft: 0 14px 34px rgba(3, 47, 45, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --page: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--teal-950);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.page-width { width: var(--page); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: hidden; }
section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.light { color: white; }
.section-heading h2,
.portal-copy h2,
.rewards-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.section-heading p:last-child,
.portal-copy > p:last-of-type,
.rewards-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.section-heading.light p:last-child,
.rewards-copy > p { color: rgba(255,255,255,.76); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--orange-300); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(3, 47, 45, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 14px 35px rgba(0,0,0,.18); background: rgba(3, 47, 45, .98); }
.nav-shell {
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; width: 188px; }
.brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 28px); }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .77rem;
  font-weight: 800;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.nav-event-link {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 10px 25px rgba(255,138,36,.22);
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-event-link:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,138,36,.3); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 99px; background: white; transition: .25s ease; }

.hero-texture {
  background-color: var(--teal-950);
  background-image: url("../img/fondo-tekorenda.png");
  background-position: center;
  background-size: cover;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 96px) 0 96px;
  display: flex;
  align-items: flex-start;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,47,45,.94) 0%, rgba(3,47,45,.78) 43%, rgba(3,47,45,.22) 72%, rgba(232,106,16,.18) 100%),
    linear-gradient(180deg, rgba(3,47,45,.12), rgba(3,47,45,.35));
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr); align-items: center; gap: 24px; min-height: calc(100svh - var(--header-height) - 192px); }
.hero-copy { max-width: 620px; padding-top: 8px; }
.hero h1 {
  max-width: 640px;
  margin: 0;
  color: white;
  font-size: clamp(3.4rem, 6.1vw, 6.3rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.hero-lead { max-width: 660px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: saturate(1.05); }
.btn-orange { color: #092f2d; background: linear-gradient(135deg, var(--orange-500), var(--orange-300)); box-shadow: 0 14px 28px rgba(255,138,36,.21); }
.btn-teal { color: white; background: linear-gradient(135deg, var(--teal-700), var(--teal-950)); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 14px 28px rgba(3,47,45,.2); }
.funding-note {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  max-width: 620px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.funding-note p { margin: 0; color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.65; }
.funding-note strong { color: white; }
.funding-dot { width: 11px; height: 11px; margin-top: 4px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 6px rgba(255,138,36,.14); animation: pulseDot 2.4s infinite; }
.hero-visual { position: relative; min-height: 760px; display: grid; place-items: center; justify-items: end; align-self: end; overflow: visible; }
.hero-phone {
  width: min(540px, 100%);
  max-height: none;
  object-fit: contain;
  animation: phoneFloat 5.8s ease-in-out infinite;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 24px; width: 34px; height: 54px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-300); transform: translateX(-50%); animation: scrollCue 1.8s infinite; }

.section-news { background: var(--paper); }
.featured-news {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}
.news-copy { padding: clamp(30px, 5vw, 58px); }
.news-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; color: var(--teal-700); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.news-meta time { padding: 7px 10px; border-radius: 999px; color: var(--orange-700); background: rgba(255,138,36,.11); }
.news-copy h3 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 1; letter-spacing: -.055em; }
.news-copy p { max-width: 700px; margin: 20px 0 26px; color: var(--muted); line-height: 1.75; }
.news-visual { position: relative; min-height: 430px; display: grid; place-items: center; padding: 44px; background: linear-gradient(145deg, var(--teal-900), var(--teal-700) 58%, var(--orange-700)); }
.news-visual::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; }
.news-visual img { position: relative; z-index: 1; width: min(240px, 90%); max-height: 280px; object-fit: contain; filter: brightness(0) invert(1); }
.news-badge { position: absolute; z-index: 2; top: 22px; right: 22px; padding: 9px 12px; border-radius: 999px; color: var(--teal-950); background: var(--orange-300); font-size: .65rem; font-weight: 900; text-transform: uppercase; }

.section-value { background: #f4efe6; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { min-height: 280px; padding: 28px; border: 1px solid rgba(7,59,56,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.7); box-shadow: var(--shadow-soft); transition: transform .25s ease, background .25s ease; }
.value-card:hover { transform: translateY(-8px); background: white; }
.card-number { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; color: var(--teal-950); background: linear-gradient(135deg, rgba(33,185,177,.24), rgba(255,138,36,.22)); font-size: .74rem; font-weight: 900; }
.value-card h3 { margin: 42px 0 12px; font-size: 1.25rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.section-app { background: white; }
.app-carousel {
  display: grid;
  grid-template-columns: 56px minmax(240px, .85fr) minmax(280px, 1.15fr) 56px;
  align-items: center;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f9f4ea, #ffffff);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.carousel-device { height: 590px; display: grid; place-items: center; padding: 34px 12px; background: radial-gradient(circle at 50% 48%, rgba(33,185,177,.14), transparent 58%); }
.carousel-device img { width: 100%; height: 100%; object-fit: contain; transition: opacity .22s ease, transform .22s ease; }
.carousel-copy { padding: 54px; border-left: 1px solid var(--line); }
.slide-kicker { margin: 0 0 12px; color: var(--orange-700); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.carousel-copy h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: .98; letter-spacing: -.055em; }
.carousel-copy > p:not(.slide-kicker) { margin: 18px 0 0; color: var(--muted); line-height: 1.75; }
.carousel-controls { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 34px; }
.carousel-arrow { width: 42px; height: 42px; margin: auto; border: 1px solid var(--line); border-radius: 50%; background: white; box-shadow: var(--shadow-soft); color: var(--teal-800); font-size: 1.7rem; cursor: pointer; transition: .2s ease; }
.carousel-arrow:hover { color: white; background: var(--teal-800); transform: scale(1.06); }
.slide-dots { display: flex; flex-wrap: wrap; gap: 7px; }
.slide-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(7,59,56,.2); cursor: pointer; transition: width .2s ease, background .2s ease; }
.slide-dots button.active { width: 28px; background: linear-gradient(90deg, var(--turquoise), var(--orange-500)); }
.slide-count { color: var(--muted); font-size: .75rem; font-weight: 800; }

.section-features { background: #f4efe6; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; border: 1px solid rgba(7,59,56,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(255,138,36,.32); }
.feature-card img { width: 52px; height: 52px; padding: 10px; border-radius: 16px; object-fit: contain; background: linear-gradient(145deg, rgba(33,185,177,.16), rgba(255,138,36,.12)); }
.feature-card h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.section-rewards { color: white; }
.rewards-overlay { background: linear-gradient(90deg, rgba(3,47,45,.94), rgba(3,47,45,.72) 48%, rgba(232,106,16,.24)); }
.rewards-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.rewards-copy h2 { color: white; }
.reward-tabs { display: grid; gap: 12px; margin-top: 34px; }
.reward-tab {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: white;
  background: rgba(255,255,255,.08);
  text-align: left;
  cursor: pointer;
  transition: .22s ease;
}
.reward-tab:hover,
.reward-tab.active { transform: translateX(8px); border-color: rgba(255,179,59,.55); background: rgba(255,255,255,.15); }
.reward-tab > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: linear-gradient(135deg, var(--turquoise), var(--orange-500)); font-weight: 900; }
.reward-tab b { font-size: .92rem; }
.reward-tab small { color: rgba(255,255,255,.64); font-size: .68rem; }
.rewards-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.reward-pack { width: min(650px, 100%); animation: rewardFloat 6s ease-in-out infinite; }
.reward-description { position: absolute; right: 0; bottom: 0; width: min(390px, 90%); padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(3,47,45,.72); backdrop-filter: blur(14px); }
.reward-description p { margin: 0 0 8px; color: var(--orange-300); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.reward-description h3 { margin: 0 0 10px; font-size: 1.35rem; }
.reward-description span { color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.6; }

.section-portal { background: white; }
.portal-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center; }
.portal-copy h2 { color: var(--ink); }
.portal-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.portal-points article { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fbf8f2; }
.portal-points b { display: block; margin-bottom: 7px; font-size: .84rem; }
.portal-points span { display: block; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.portal-visual { min-height: 520px; display: grid; place-items: center; padding: 30px; border-radius: 34px; background: radial-gradient(circle at 50% 45%, rgba(33,185,177,.14), transparent 62%); }
.portal-visual img { width: 100%; animation: laptopFloat 5.6s ease-in-out infinite; }

.section-allies { padding-bottom: 130px; color: white; }
.allies-overlay { background: linear-gradient(90deg, rgba(3,47,45,.92), rgba(3,47,45,.72), rgba(232,106,16,.26)); }
.section-allies .page-width,
.logo-marquee { position: relative; z-index: 1; }
.logo-marquee { width: 100%; overflow: hidden; margin-top: 42px; mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent); }
.logo-track { display: flex; width: max-content; gap: 18px; animation: marquee 30s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.partner-logo { width: 230px; height: 132px; padding: 22px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(247,240,228,.88); backdrop-filter: blur(12px); }
.partner-logo img { max-width: 100%; max-height: 86px; object-fit: contain; }

.section-team { background: #f4efe6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { overflow: hidden; border: 1px solid rgba(7,59,56,.11); border-radius: 28px; background: white; box-shadow: var(--shadow-soft); transition: transform .25s ease; }
.team-card:hover { transform: translateY(-8px); }
.team-photo { height: 320px; overflow: hidden; background: #e9e5dd; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.035); }
.team-info { padding: 26px; }
.team-info > p { margin: 0 0 10px; color: var(--orange-700); font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.team-info h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; }
.team-info > span { display: block; min-height: 112px; margin-top: 14px; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.team-links { display: flex; gap: 9px; margin-top: 18px; }
.team-links a,
.social-links a:not(.social-text) { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(33,185,177,.12); transition: .2s ease; }
.team-links a:hover,
.social-links a:hover { transform: translateY(-3px); background: rgba(255,138,36,.16); }
.team-links img,
.social-links img { width: 20px; height: 20px; object-fit: contain; }

.site-footer { padding: 86px 0 24px; color: white; background: #022927; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 54px; }
.footer-intro img { width: 220px; height: 64px; object-fit: contain; object-position: left; }
.footer-intro h2 { max-width: 680px; margin: 28px 0 18px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.footer-intro p { max-width: 660px; margin: 0; color: rgba(255,255,255,.64); line-height: 1.7; }
.footer-contact,
.footer-social { padding-top: 14px; }
.footer-contact h3,
.footer-social h3 { margin: 0 0 20px; color: var(--orange-300); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a,
.footer-contact span { display: block; margin-bottom: 12px; color: rgba(255,255,255,.76); font-size: .84rem; text-decoration: none; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.social-links a:not(.social-text) { background: rgba(255,255,255,.08); }
.social-text { min-height: 38px; padding: 0 12px; display: inline-flex; align-items: center; border-radius: 12px; color: white; background: rgba(255,255,255,.08); font-size: .72rem; font-weight: 800; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.46); font-size: .7rem; }
.footer-bottom a { text-decoration: none; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 800; width: 46px; height: 46px; border: 0; border-radius: 50%; color: var(--teal-950); background: linear-gradient(135deg, var(--orange-500), var(--orange-300)); box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(15px); transition: .25s ease; cursor: pointer; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Event page */
.event-page { min-height: 100svh; background: #0a4c48; }
.event-stage { min-height: 100svh; display: grid; grid-template-columns: minmax(250px, .8fr) minmax(340px, 480px) minmax(280px, .9fr); align-items: stretch; background: linear-gradient(115deg, #073b38, #0e726b 56%, #ef7e20); }
.event-mobile-shell { width: 100%; min-height: 100svh; background: #fbfaf6; box-shadow: 0 0 60px rgba(0,0,0,.22); }
.event-mobile-header { position: sticky; top: 0; z-index: 10; height: 74px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(7,59,56,.08); background: rgba(251,250,246,.94); backdrop-filter: blur(14px); }
.event-brand { width: 148px; }
.event-brand img { width: 100%; height: 44px; object-fit: contain; object-position: left; }
.event-register-btn { min-height: 38px; padding: 9px 16px; border: 0; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--teal-700), var(--teal-950)); font-size: .72rem; font-weight: 900; cursor: pointer; }
.event-content { padding: 22px 18px 34px; }
.event-logo-card { height: 238px; display: grid; place-items: center; padding: 24px; border: 1px solid rgba(7,59,56,.11); border-radius: 22px; background: white; }
.event-logo-card img { max-height: 185px; max-width: 78%; object-fit: contain; }
.event-location { margin: 18px 0 0; color: #5e706c; font-size: .73rem; }
.event-location span { color: var(--turquoise); font-size: 1rem; }
.event-content h1 { margin: 20px 0 0; font-size: clamp(2.1rem, 8vw, 3.1rem); line-height: 1; letter-spacing: -.05em; }
.event-description { margin: 16px 0 0; color: #6e7c79; font-size: .82rem; line-height: 1.55; }
.event-details { display: grid; gap: 10px; margin-top: 20px; }
.event-detail { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; }
.detail-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: var(--teal-700); background: rgba(33,185,177,.12); }
.event-detail p { margin: 0; }
.event-detail b,
.event-detail small { display: block; }
.event-detail b { font-size: .77rem; }
.event-detail small { margin-top: 3px; color: #8a9794; font-size: .66rem; }
.event-countdown { margin-top: 22px; padding: 18px 14px; border: 1px solid rgba(7,59,56,.1); border-radius: 20px; background: white; box-shadow: 0 10px 28px rgba(3,47,45,.06); }
.event-countdown > p { margin: 0 0 12px; text-align: center; color: #778481; font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.countdown-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 6px; align-items: center; }
.countdown-grid div { min-width: 0; padding: 9px 3px; border-radius: 13px; text-align: center; background: rgba(33,185,177,.12); }
.countdown-grid strong,
.countdown-grid span { display: block; }
.countdown-grid strong { color: var(--teal-900); font-size: 1.45rem; }
.countdown-grid span { margin-top: 2px; color: #687875; font-size: .48rem; font-weight: 800; text-transform: uppercase; }
.countdown-grid i { color: #81908d; font-style: normal; font-weight: 900; }
.event-start-btn { width: 100%; min-height: 50px; margin-top: 18px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border: 0; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); font-size: .78rem; font-weight: 900; cursor: pointer; box-shadow: 0 12px 24px rgba(7,81,76,.18); }
.event-permission-note { margin: 10px 0 0; color: #98a3a0; text-align: center; font-size: .62rem; }
.event-organizers { margin-top: 28px; }
.event-organizers > p { margin: 0 0 10px; color: #8b9895; font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.event-organizer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.event-organizer-grid div { height: 72px; display: grid; place-items: center; padding: 9px; border: 1px dashed rgba(7,59,56,.13); border-radius: 14px; background: white; }
.event-organizer-grid img { max-width: 100%; max-height: 48px; object-fit: contain; }
.event-back-link { display: block; margin-top: 24px; color: var(--teal-700); text-align: center; font-size: .68rem; font-weight: 800; text-decoration: none; }
.event-side { position: sticky; top: 0; height: 100svh; align-self: start; padding: 54px; color: white; display: flex; flex-direction: column; justify-content: center; }
.event-side-left { align-items: flex-end; text-align: right; }
.event-side-left img { width: 190px; filter: brightness(0) invert(1); opacity: .95; }
.event-side-left p { max-width: 230px; margin: 18px 0 0; color: rgba(255,255,255,.62); line-height: 1.6; }
.event-side-right { max-width: 500px; }
.event-side-kicker { margin: 0 0 12px; color: var(--orange-300); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.event-side-right h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: .98; letter-spacing: -.055em; }
.event-side-right > p:not(.event-side-kicker) { color: rgba(255,255,255,.72); line-height: 1.7; }
.event-side-card { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; margin-top: 24px; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(3,47,45,.28); backdrop-filter: blur(12px); }
.event-side-card span { color: var(--orange-300); font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.event-side-card b { font-size: .78rem; }
.event-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.event-modal.show { opacity: 1; visibility: visible; }
.event-modal-backdrop { position: absolute; inset: 0; background: rgba(2,41,39,.78); backdrop-filter: blur(8px); }
.auth-panel { position: relative; z-index: 1; width: min(410px, calc(100% - 30px)); padding: 34px 28px 26px; border-radius: 26px; background: white; box-shadow: 0 30px 80px rgba(0,0,0,.3); text-align: center; }
.modal-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(7,59,56,.08); font-size: 1.4rem; cursor: pointer; }
.auth-pin { width: 62px; height: 62px; margin: 0 auto 12px; object-fit: contain; object-position: top; }
.auth-panel h2,
.location-panel h2 { margin: 0; font-size: 1.3rem; letter-spacing: -.03em; }
.auth-panel > p,
.location-panel > p { color: #71807d; font-size: .78rem; line-height: 1.5; }
.google-button { width: 100%; min-height: 48px; margin-top: 12px; border: 1px solid rgba(7,59,56,.16); border-radius: 13px; background: white; font-size: .78rem; font-weight: 800; cursor: pointer; }
.google-g { display: inline-block; margin-right: 9px; color: #4285f4; font-size: 1.05rem; font-weight: 900; }
.auth-panel small { display: block; margin-top: 12px; color: #a3aaa8; font-size: .55rem; line-height: 1.45; }
.location-modal { align-items: end; }
.location-panel { position: relative; z-index: 1; width: min(480px, 100%); padding: 14px 24px 28px; border-radius: 28px 28px 0 0; background: white; text-align: center; transform: translateY(100%); transition: transform .28s ease; }
.location-modal.show .location-panel { transform: translateY(0); }
.drag-handle { width: 42px; height: 4px; margin: 0 auto 20px; border-radius: 99px; background: #d1d8d6; }
.location-icon { width: 58px; height: 58px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; color: var(--teal-700); background: rgba(33,185,177,.14); font-size: 1.5rem; }
.location-allow { width: 100%; min-height: 48px; margin-top: 12px; border: 0; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); font-size: .78rem; font-weight: 900; cursor: pointer; }
.location-later { margin-top: 9px; padding: 9px 14px; border: 0; color: #8c9895; background: transparent; font-size: .72rem; cursor: pointer; }
.location-status { min-height: 18px; margin: 6px 0 0 !important; color: var(--teal-700) !important; font-weight: 700; }

@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
@keyframes rewardFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes laptopFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 6px rgba(255,138,36,.14); } 50% { box-shadow: 0 0 0 11px rgba(255,138,36,.03); } }
@keyframes scrollCue { 0% { transform: translate(-50%,0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translate(-50%,23px); opacity: 0; } }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: 180px 1fr auto; gap: 14px; }
  .brand { width: 168px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .68rem; }
  .nav-event-link { padding-inline: 14px; font-size: .65rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); margin-inline: auto; }
  .event-stage { grid-template-columns: 1fr minmax(340px, 480px); }
  .event-side-left { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; --page: min(100% - 28px, 760px); }
  .site-header { height: var(--header-height); }
  .nav-shell { grid-template-columns: 1fr auto; }
  .brand { width: 166px; }
  .brand img { height: 46px; }
  .menu-toggle { display: block; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    padding: 20px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0 0 22px 22px;
    background: rgba(3,47,45,.98);
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-event-link { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 92px); padding-bottom: 82px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(3.3rem, 12vw, 6rem); }
  .hero-visual { min-height: 620px; justify-items: center; }
  .hero-phone { width: min(440px, 84%); }
  .featured-news { grid-template-columns: 1fr; }
  .news-visual { min-height: 320px; }
  .app-carousel { grid-template-columns: 48px 1fr 48px; }
  .carousel-device { grid-column: 2; height: 540px; }
  .carousel-copy { grid-column: 1 / -1; grid-row: 2; padding: 34px; border-top: 1px solid var(--line); border-left: 0; }
  .app-carousel .prev { grid-column: 1; grid-row: 1; }
  .app-carousel .next { grid-column: 3; grid-row: 1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-layout,
  .portal-layout { grid-template-columns: 1fr; }
  .rewards-visual { min-height: 480px; }
  .portal-visual { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .event-stage { display: block; background: #fbfaf6; }
  .event-side { display: none; }
  .event-mobile-shell { max-width: 560px; margin-inline: auto; box-shadow: none; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 24px); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2,
  .portal-copy h2,
  .rewards-copy h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero { padding-top: calc(var(--header-height) + 78px); padding-bottom: 70px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,47,45,.94), rgba(3,47,45,.8) 65%, rgba(232,106,16,.22)); }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
  .hero-lead { font-size: .86rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .funding-note { padding: 16px; }
  .hero-visual { min-height: 520px; }
  .hero-phone { width: min(380px, 92%); }
  .scroll-cue { display: none; }
  .news-copy { padding: 26px 22px; }
  .news-copy h3 { font-size: clamp(2rem, 10vw, 3rem); }
  .news-visual { min-height: 250px; }
  .value-grid,
  .feature-grid,
  .team-grid { grid-template-columns: 1fr; }
  .team-card:last-child { grid-column: auto; width: 100%; }
  .value-card { min-height: auto; }
  .value-card h3 { margin-top: 28px; }
  .app-carousel { grid-template-columns: 44px 1fr 44px; border-radius: 24px; }
  .carousel-device { height: 440px; padding-inline: 0; }
  .carousel-copy { padding: 26px 22px; }
  .carousel-copy h3 { font-size: 2.2rem; }
  .reward-tab { grid-template-columns: 42px 1fr; }
  .reward-tab small { display: none; }
  .rewards-visual { min-height: 380px; }
  .reward-description { position: relative; width: 100%; margin-top: -20px; }
  .portal-points { grid-template-columns: 1fr; }
  .portal-visual { min-height: 280px; padding: 10px; }
  .partner-logo { width: 190px; height: 115px; }
  .team-photo { height: 310px; }
  .team-info > span { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .event-mobile-shell { max-width: none; }
  .event-content { padding-inline: 18px; }
  .event-logo-card { height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Ajustes visuales finales */
.news-visual img {
  width: min(260px, 90%);
  max-height: 300px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  filter: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.section-team {
  color: white;
  background:
    linear-gradient(100deg, rgba(3,47,45,.98), rgba(7,81,76,.94) 58%, rgba(198,94,22,.88)),
    url("../img/fondo-tekorenda.png") center / cover;
}
.section-team .section-heading p:last-child { color: rgba(255,255,255,.72); }
.section-team .eyebrow { color: var(--orange-300); }
.team-card {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}
.team-photo { background: rgba(255,255,255,.1); }
.team-info h3 { color: white; }
.team-info > span { color: rgba(255,255,255,.68); }
.team-links a { background: rgba(255,255,255,.12); }
.team-links a:hover { background: rgba(255,179,59,.22); }


/* ===== Ajustes V8 solicitados por el usuario ===== */
body {
  background: var(--teal-950);
}

.hero {
  padding: calc(var(--header-height) + 84px) 0 78px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.05fr);
  min-height: calc(100svh - var(--header-height) - 162px);
}
.hero-visual {
  min-height: 700px;
  align-self: center;
  justify-items: end;
}
.hero-phone {
  width: min(660px, 100%);
  margin-right: -18px;
}

.section-news,
.section-value,
.section-app,
.section-features,
.section-portal {
  color: white;
  background:
    linear-gradient(105deg, rgba(3,47,45,.98) 0%, rgba(7,81,76,.96) 55%, rgba(198,94,22,.88) 100%),
    url("../img/fondo-tekorenda.png") center / cover;
}
.section-news::before,
.section-value::before,
.section-app::before,
.section-features::before,
.section-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}
.section-news .page-width,
.section-value .page-width,
.section-app .page-width,
.section-features .page-width,
.section-portal .page-width {
  position: relative;
  z-index: 1;
}
.section-news .section-heading h2,
.section-value .section-heading h2,
.section-app .section-heading h2,
.section-features .section-heading h2,
.section-portal .portal-copy h2 {
  color: white;
}
.section-news .section-heading p:last-child,
.section-value .section-heading p:last-child,
.section-app .section-heading p:last-child,
.section-features .section-heading p:last-child,
.section-portal .portal-copy > p:last-of-type {
  color: rgba(255,255,255,.76);
}

.featured-news,
.app-carousel,
.value-card,
.feature-card,
.portal-points article,
.portal-visual {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(0,0,0,.18);
}

.featured-news {
  background: rgba(255,255,255,.08);
}
.news-copy {
  color: white;
}
.news-meta {
  color: rgba(255,255,255,.82);
}
.news-meta time {
  color: var(--orange-300);
  background: rgba(255,179,59,.14);
  border: 1px solid rgba(255,179,59,.22);
}
.news-copy p {
  color: rgba(255,255,255,.74);
}
.news-visual {
  min-height: 460px;
  background: var(--cream);
}
.news-visual::before {
  border-color: rgba(7,59,56,.08);
}
.news-visual img {
  width: min(330px, 92%);
  max-height: 380px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.news-badge {
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
}

.value-card {
  background: rgba(255,255,255,.09);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.value-card:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,179,59,.3);
  box-shadow: 0 30px 64px rgba(0,0,0,.2);
}
.value-card h3,
.feature-card h3,
.portal-points b {
  color: white;
}
.value-card p,
.feature-card p,
.portal-points span {
  color: rgba(255,255,255,.76);
}
.card-number,
.feature-card img {
  background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,179,59,.22));
}

.app-carousel {
  grid-template-columns: 64px minmax(320px, .95fr) minmax(300px, 1.05fr) 64px;
  min-height: 700px;
  overflow: visible;
  background: rgba(255,255,255,.08);
}
.carousel-device {
  height: 760px;
  padding: 0 10px;
  background: none;
  overflow: visible;
}
.carousel-device img {
  width: auto;
  max-width: min(520px, 100%);
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.24));
}
.carousel-copy {
  border-left-color: rgba(255,255,255,.12);
}
.slide-kicker {
  color: var(--orange-300);
}
.carousel-copy h3 {
  color: white;
}
.carousel-copy > p:not(.slide-kicker),
.slide-count {
  color: rgba(255,255,255,.74);
}
.carousel-arrow {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  color: white;
}
.carousel-arrow:hover {
  background: rgba(255,255,255,.2);
  color: white;
}
.slide-dots button {
  background: rgba(255,255,255,.25);
}

.portal-points article {
  background: rgba(255,255,255,.08);
}
.portal-visual {
  overflow: visible;
  background: rgba(255,255,255,.08);
}
.portal-visual img {
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.2));
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .98fr);
  }
  .hero-phone {
    width: min(580px, 100%);
  }
  .app-carousel {
    grid-template-columns: 56px minmax(280px, .92fr) minmax(280px, 1.08fr) 56px;
  }
  .carousel-device {
    height: 680px;
  }
  .carousel-device img {
    max-height: 680px;
  }
}

@media (max-width: 900px) {
  .section-news,
  .section-value,
  .section-app,
  .section-features,
  .section-portal {
    background:
      linear-gradient(180deg, rgba(3,47,45,.98) 0%, rgba(7,81,76,.95) 72%, rgba(198,94,22,.78) 100%),
      url("../img/fondo-tekorenda.png") center / cover;
  }
  .hero {
    padding-top: calc(var(--header-height) + 82px);
    padding-bottom: 70px;
  }
  .hero-visual {
    min-height: 600px;
    justify-items: center;
  }
  .hero-phone {
    width: min(500px, 94%);
    margin-right: 0;
  }
  .featured-news {
    grid-template-columns: 1fr;
  }
  .news-visual {
    min-height: 340px;
  }
  .app-carousel {
    grid-template-columns: 48px 1fr 48px;
    min-height: auto;
    overflow: hidden;
  }
  .carousel-device {
    height: 620px;
  }
  .carousel-device img {
    max-width: min(420px, 100%);
    max-height: 620px;
  }
  .carousel-copy {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 620px) {
  .hero-visual {
    min-height: 500px;
  }
  .hero-phone {
    width: min(420px, 96%);
  }
  .news-visual {
    min-height: 280px;
    padding: 28px;
  }
  .news-visual img {
    width: min(240px, 88%);
    max-height: 240px;
  }
  .app-carousel {
    grid-template-columns: 44px 1fr 44px;
  }
  .carousel-device {
    height: 520px;
  }
  .carousel-device img {
    max-width: min(340px, 100%);
    max-height: 520px;
  }
  .value-card,
  .feature-card,
  .portal-points article {
    background: rgba(255,255,255,.11);
  }
}

/* =========================================================
   V10 — Footer editorial y evento totalmente responsive
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Footer principal inspirado en la referencia del usuario */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(2, 38, 36, .99) 0%, rgba(3, 47, 45, .98) 60%, rgba(141, 78, 20, .88) 100%),
    url("../img/fondo-tekorenda.png") center / cover;
}
.footer-glow {
  position: absolute;
  right: -170px;
  top: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 36, .28), transparent 66%);
  pointer-events: none;
}
.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 1fr .92fr;
  gap: 0;
  align-items: start;
}
.footer-brand-block,
.footer-follow,
.footer-updates {
  min-height: 320px;
  padding: 0 48px 48px;
}
.footer-brand-block { padding-left: 0; }
.footer-follow,
.footer-updates { border-left: 1px solid rgba(255,255,255,.11); }
.footer-brand-block > img {
  width: 220px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand-block h2 {
  max-width: 500px;
  margin: 24px 0 20px;
  color: #fff;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: .91;
  letter-spacing: -.065em;
}
.footer-brand-block p,
.footer-follow > p,
.footer-updates > p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  line-height: 1.75;
}
.footer-follow h3,
.footer-updates h3 {
  margin: 8px 0 24px;
  color: var(--turquoise);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.footer-social-row a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.footer-social-row a:hover {
  transform: translateY(-5px);
  border-color: rgba(255,138,36,.52);
  background: rgba(255,138,36,.13);
}
.footer-social-row img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-contact-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.footer-contact-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.footer-contact-form input::placeholder { color: rgba(255,255,255,.42); }
.footer-contact-form input:focus {
  border-color: rgba(33,185,177,.72);
  box-shadow: 0 0 0 4px rgba(33,185,177,.11);
}
.footer-contact-form button {
  justify-self: start;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 13px 28px rgba(255,138,36,.21);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(255,138,36,.29);
}
.footer-form-status {
  min-height: 18px;
  margin-top: 10px !important;
  color: var(--orange-300) !important;
  font-size: .72rem !important;
  font-weight: 700;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 82px;
  margin-top: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.52);
}
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer-nav a {
  position: relative;
  padding: 3px 25px;
  color: rgba(255,255,255,.8);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 24px;
  background: rgba(33,185,177,.58);
  transform: translateY(-50%);
}
.footer-nav a:hover { color: var(--orange-300); }

/* Pantalla de carga del evento */
.event-page.event-is-loading { overflow: hidden; }
.event-page.event-is-loading .event-site { visibility: hidden; }
.wine-preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--teal-950);
  background: var(--cream);
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}
.wine-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.wine-preloader-inner {
  width: min(560px, 100%);
  text-align: center;
}
.wine-loader-gif {
  width: min(220px, 56vw);
  max-height: 220px;
  margin: 0 auto 22px;
  object-fit: contain;
}
.wine-loader-logo {
  width: 210px;
  height: 62px;
  margin: 18px auto 10px;
  object-fit: contain;
}
.wine-loader-kicker {
  margin: 0 0 12px;
  color: var(--orange-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.wine-preloader h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.wine-preloader h1 + p {
  max-width: 500px;
  margin: 18px auto 0;
  color: #5d706c;
  font-size: .9rem;
  line-height: 1.7;
}
.wine-glass-loader {
  position: relative;
  width: 94px;
  height: 130px;
  margin: 0 auto;
}
.wine-glass-loader::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  width: 60px;
  height: 72px;
  border: 5px solid var(--teal-800);
  border-top: 0;
  border-radius: 8px 8px 32px 32px;
  transform-origin: 50% 100%;
  animation: wineSway 1.7s ease-in-out infinite;
}
.wine-liquid {
  position: absolute;
  left: 23px;
  top: 40px;
  width: 48px;
  height: 28px;
  border-radius: 0 0 25px 25px;
  background: linear-gradient(135deg, #8b1e35, #b32f4c);
  transform-origin: 50% 100%;
  animation: wineSway 1.7s ease-in-out infinite;
}
.wine-stem {
  position: absolute;
  left: 44px;
  top: 72px;
  width: 5px;
  height: 42px;
  border-radius: 99px;
  background: var(--teal-800);
}
.wine-base {
  position: absolute;
  left: 23px;
  bottom: 6px;
  width: 48px;
  height: 5px;
  border-radius: 99px;
  background: var(--teal-800);
}
.wine-loader-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.wine-loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: wineDot 1.2s ease-in-out infinite;
}
.wine-loader-dots span:nth-child(2) { animation-delay: .16s; }
.wine-loader-dots span:nth-child(3) { animation-delay: .32s; }

/* Página del evento en escritorio, tablet y móvil */
.event-page {
  min-height: 100svh;
  color: var(--ink);
  background: #edf5f3;
}
.event-site { min-height: 100svh; }
.event-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.event-desktop-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  color: #fff;
  background: rgba(3,47,45,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.event-nav-row {
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}
.event-brand {
  width: 205px;
  display: inline-flex;
}
.event-brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.event-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.event-nav a {
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}
.event-nav a:hover { color: var(--orange-300); }
.event-register-btn {
  min-height: 44px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 11px 24px rgba(255,138,36,.2);
  font-size: .75rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-register-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255,138,36,.28); }
.event-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, #033b38 0%, #08645e 58%, #ed7a1c 100%),
    url("../img/fondo-tekorenda.png") center / cover;
}
.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/fondo-tekorenda.png") center / cover;
  opacity: .22;
  mix-blend-mode: screen;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(33,185,177,.2), transparent 32%),
    radial-gradient(circle at 88% 70%, rgba(255,179,59,.18), transparent 28%),
    linear-gradient(90deg, rgba(3,47,45,.24), transparent 50%);
}
.event-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding-block: 88px;
}
.event-visual-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(3,47,45,.36);
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.event-live-badge {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-logo-stage {
  min-height: 430px;
  margin-top: 22px;
  display: grid;
  place-items: center;
  padding: 38px;
  border-radius: 25px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 24px 55px rgba(0,0,0,.17);
}
.event-logo-stage img {
  width: min(310px, 80%);
  max-height: 310px;
  object-fit: contain;
}
.event-city {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.event-city span { color: var(--orange-300); }
.event-main-copy { max-width: 680px; }
.event-main-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.07em;
}
.event-side-kicker {
  margin: 0 0 18px;
  color: var(--orange-300);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.event-description {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.75;
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.event-fact {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.event-fact .detail-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(33,185,177,.22);
}
.event-fact p { margin: 0; }
.event-fact b,
.event-fact small { display: block; }
.event-fact b { color: #fff; font-size: .8rem; }
.event-fact small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: .68rem; }
.event-main-copy .event-countdown {
  margin-top: 18px;
  padding: 18px;
  border-color: rgba(255,255,255,.14);
  background: rgba(3,47,45,.28);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.event-main-copy .event-countdown > p { color: rgba(255,255,255,.66); }
.event-main-copy .countdown-grid div { background: rgba(255,255,255,.11); }
.event-main-copy .countdown-grid strong { color: #fff; font-size: 1.7rem; }
.event-main-copy .countdown-grid span,
.event-main-copy .countdown-grid i { color: rgba(255,255,255,.6); }
.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.event-start-btn {
  width: auto;
  min-width: 230px;
  min-height: 52px;
  margin: 0;
  padding: 0 24px;
  border-radius: 14px;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-300));
  box-shadow: 0 15px 30px rgba(255,138,36,.22);
}
.event-back-link {
  display: inline-flex;
  margin: 0;
  padding: 14px 8px;
  color: rgba(255,255,255,.8);
  text-align: left;
  font-size: .74rem;
}
.event-back-link:hover { color: var(--orange-300); }
.event-permission-note {
  margin: 12px 0 0;
  color: rgba(255,255,255,.55);
  text-align: left;
  font-size: .65rem;
}
.event-how {
  padding: 112px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(33,185,177,.13), transparent 28%),
    #edf5f3;
}
.event-section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}
.event-section-heading h2,
.event-organizers-copy h2 {
  margin: 0;
  color: var(--teal-950);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.event-section-heading > p:last-child {
  max-width: 780px;
  margin: 20px 0 0;
  color: #627570;
  line-height: 1.75;
}
.event-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event-step {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(7,59,56,.1);
  border-radius: 25px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 44px rgba(3,47,45,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-step:hover { transform: translateY(-9px); box-shadow: 0 25px 55px rgba(3,47,45,.14); }
.event-step > span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33,185,177,.23), rgba(255,138,36,.22));
  font-size: .72rem;
  font-weight: 900;
}
.event-step h3 { margin: 42px 0 12px; font-size: 1.3rem; }
.event-step p { margin: 0; color: #6a7b77; font-size: .88rem; line-height: 1.72; }
.event-organizers-section {
  padding: 100px 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(3,47,45,.98), rgba(8,100,94,.94) 58%, rgba(232,106,16,.88)),
    url("../img/fondo-tekorenda.png") center / cover;
}
.event-organizers-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.event-organizers-copy h2 { color: #fff; }
.event-organizer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.event-organizer-grid div {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .24s ease;
}
.event-organizer-grid div:hover { transform: translateY(-7px) rotate(-1deg); }
.event-organizer-grid img { max-width: 100%; max-height: 88px; object-fit: contain; }
.event-footer { padding: 26px 0; color: rgba(255,255,255,.65); background: #022927; }
.event-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.event-footer img { width: 180px; height: 48px; object-fit: contain; object-position: left center; }
.event-footer p { margin: 0; font-size: .72rem; }
.event-footer a { color: #fff; font-size: .72rem; font-weight: 800; text-decoration: none; }
.event-footer a:hover { color: var(--orange-300); }

@keyframes wineSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}
@keyframes wineDot {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-7px); opacity: 1; }
}

@media (max-width: 980px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; min-height: auto; padding: 0 0 50px; }
  .footer-brand-block h2 { max-width: 780px; }
  .footer-follow { border-left: 0; padding-left: 0; }
  .footer-updates { padding-right: 0; }

  .event-nav-row { grid-template-columns: 200px 1fr auto; gap: 18px; }
  .event-nav { gap: 18px; }
  .event-hero-grid { grid-template-columns: .82fr 1.18fr; gap: 34px; }
  .event-logo-stage { min-height: 350px; }
  .event-main-copy h1 { font-size: clamp(3.5rem, 8vw, 6rem); }
  .event-facts { grid-template-columns: 1fr; }
  .event-organizers-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-footer { padding-top: 64px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-block,
  .footer-follow,
  .footer-updates {
    min-height: auto;
    padding: 0 0 42px;
    border-left: 0;
  }
  .footer-follow,
  .footer-updates {
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.11);
  }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-nav { width: 100%; justify-content: space-between; }
  .footer-nav a { padding: 3px 12px; }
  .footer-nav a:first-child { padding-left: 0; }

  .event-shell { width: min(100% - 28px, 680px); }
  .event-desktop-header { height: 72px; }
  .event-nav-row { grid-template-columns: 1fr auto; }
  .event-brand { width: 175px; }
  .event-brand img { height: 50px; }
  .event-nav { display: none; }
  .event-register-btn { min-height: 40px; padding-inline: 16px; }
  .event-hero { min-height: auto; }
  .event-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 58px 70px;
  }
  .event-visual-panel { order: 2; }
  .event-main-copy { order: 1; }
  .event-logo-stage { min-height: 360px; }
  .event-facts { grid-template-columns: repeat(2, 1fr); }
  .event-step-grid { grid-template-columns: 1fr; }
  .event-step { min-height: auto; }
  .event-step h3 { margin-top: 28px; }
  .event-organizer-grid { grid-template-columns: repeat(3, 1fr); }
  .event-footer-row { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .footer-brand-block h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .footer-social-row a { width: 50px; height: 50px; }
  .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 0; }
  .footer-nav a { padding: 3px 0; }
  .footer-nav a + a::before { display: none; }

  .wine-loader-logo { width: 184px; }
  .wine-preloader h1 { font-size: 2.35rem; }
  .event-shell { width: calc(100% - 24px); }
  .event-brand { width: 150px; }
  .event-register-btn { padding-inline: 13px; font-size: .66rem; }
  .event-main-copy h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); }
  .event-description { font-size: .88rem; }
  .event-facts { grid-template-columns: 1fr; }
  .event-main-copy .event-countdown { padding: 14px 9px; }
  .event-main-copy .countdown-grid { gap: 4px; }
  .event-main-copy .countdown-grid strong { font-size: 1.35rem; }
  .event-actions { display: grid; grid-template-columns: 1fr; }
  .event-start-btn { width: 100%; min-width: 0; }
  .event-back-link { justify-content: center; }
  .event-permission-note { text-align: center; }
  .event-visual-panel { padding: 18px; border-radius: 25px; }
  .event-logo-stage { min-height: 280px; padding: 28px; }
  .event-logo-stage img { width: min(250px, 86%); }
  .event-how { padding: 80px 0; }
  .event-section-heading h2,
  .event-organizers-copy h2 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .event-organizer-grid { grid-template-columns: 1fr; }
  .event-organizer-grid div { min-height: 120px; }
  .event-footer-row { flex-direction: column; align-items: flex-start; }
}
