:root {
  --dark: #033442;
  --dark-2: #052a35;
  --teal: #288493;
  --teal-light: #59a7b3;
  --orange: #fe5e12;
  --orange-2: #ff7a3d;
  --cream: #f8f4ec;
  --white: #ffffff;
  --ink: #0a2530;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

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


body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
em { font-style: normal; color: var(--orange); }

::selection { background: var(--orange); color: var(--white); }

/* ---------- noise ---------- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--dark); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: transform .8s var(--ease), opacity .6s ease .2s;
}
.preloader.done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; color: var(--cream); }
.preloader-logo { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px; animation: pulse 1.4s ease-in-out infinite; }
.preloader-bar { width: 220px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; margin: 0 auto 14px; }
.preloader-bar span { display: block; height: 100%; width: 0%; background: var(--orange); animation: load 1.6s var(--ease) forwards; }
.preloader-inner p { font-size: .72rem; letter-spacing: .2em; opacity: .7; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes load { to { width: 100%; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: .92rem;
  position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: ''; position: absolute; inset: 0; background: currentColor; opacity: 0;
  transform: scale(0); border-radius: 50%; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px -8px rgba(254,94,18,.6); }
.btn-orange:hover { box-shadow: 0 14px 30px -8px rgba(254,94,18,.75); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.magnetic { will-change: transform; }

/* ---------- layout helpers ---------- */
.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 14px; display: block;
}
.eyebrow-light { color: var(--orange-2); }
.section-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; color: var(--dark); margin-bottom: 18px;
}
.section-sub { color: #5a7178; font-size: 1.05rem; max-width: 520px; }
.center { text-align: center; margin: 0 auto 60px; }
.center .section-sub { margin: 0 auto; }

.agenda-snippet {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding: 10px 20px 10px 10px;
  background: var(--white); border-radius: 100px; box-shadow: 0 16px 34px -18px rgba(3,52,66,.35);
  transform: rotate(-2deg); transition: transform .4s var(--ease);
}
.agenda-snippet:hover { transform: rotate(0deg); }
.agenda-snippet img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top; }
.agenda-snippet span { font-size: .82rem; font-weight: 600; color: var(--dark); }

.tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 12px;
}
.tag-baja { background: #dff2ea; color: #1f8f5f; }
.tag-media { background: #fdecd6; color: #c76a10; }
.tag-alta { background: #fbe0dd; color: #d1381f; }
.tag-corp { background: #dcecef; color: var(--teal); }

.link-underline {
  display: inline-block; margin-top: 20px; font-weight: 600; color: var(--dark); position: relative; padding-bottom: 3px;
}
.link-underline::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- reveal animations (base state, JS adds .in) ---------- */
.reveal-up { opacity: 0; transform: translateY(50px); }
.reveal-up.in { opacity: 1; transform: translateY(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-line { opacity: 0; }
.reveal-line.in { opacity: 1; transition: opacity .6s ease; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0; transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled { padding: 12px 0; background: rgba(3,52,66,.88); backdrop-filter: blur(14px); box-shadow: 0 10px 30px -15px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); letter-spacing: .03em; color: var(--white); font-size: 1.05rem; }
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--orange); }
.nav-logo em { color: var(--orange-2); }
.nav-links { display: flex; gap: 30px; }
.nav-link { position: relative; color: var(--white); font-size: .92rem; font-weight: 500; padding: 4px 0; }
.nav-link span { position: relative; }
.nav-link span::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav-link:hover span::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 22px; font-size: .85rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--dark); z-index: 600;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--cream); font-size: 1.4rem; font-family: var(--font-display); text-transform: uppercase; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 140px 24px 60px;
}
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.15); }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,52,66,.75) 0%, rgba(3,52,66,.55) 40%, rgba(3,52,66,.92) 100%);
}
.floating-shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 1; }
.shape-1 { width: 140px; height: 140px; border: 2px solid var(--orange); top: 18%; left: 8%; }
.shape-2 { width: 90px; height: 90px; background: var(--orange); opacity: .18; top: 62%; right: 10%; }
.shape-3 { width: 60px; height: 60px; border: 2px solid var(--teal-light); bottom: 14%; left: 14%; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; color: var(--white); }
.hero-kicker span {
  display: inline-block; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 100px; margin-bottom: 26px; font-weight: 600;
}
.hero-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; line-height: .95; margin-bottom: 26px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; font-size: clamp(2.6rem, 9vw, 6.4rem); transform: translateY(110%); }
.hero-subtitle { font-size: clamp(1rem, 1.6vw, 1.2rem); opacity: .9; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--white);
}
.scroll-cue-text { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.scroll-cue-line { width: 1px; height: 46px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-cue-line i { position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: var(--orange); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { top: -20px; } 100% { top: 46px; } }

/* ---------- marquee ---------- */
.marquee { background: var(--orange); overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; color: var(--white); letter-spacing: .02em;
  padding-right: 12px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { padding: 140px 24px; background: var(--cream); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-img-wrap { border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 70px -30px rgba(3,52,66,.4); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.about-badge {
  position: absolute; bottom: -26px; right: -26px; background: var(--dark); color: var(--white);
  border-radius: 20px; padding: 20px 24px; text-align: center; box-shadow: 0 20px 40px -15px rgba(0,0,0,.4);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--orange-2); }
.about-badge span { font-size: .72rem; opacity: .85; }
.about-text p { color: #4c6169; line-height: 1.75; margin-bottom: 16px; font-size: 1.02rem; }
.stats-row { display: flex; gap: 40px; margin: 34px 0 10px; flex-wrap: wrap; }
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px; max-width: 150px; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--dark); }
.stat-plus { font-family: var(--font-display); font-size: 1.4rem; color: var(--orange); }
.stat-label { width: 100%; font-size: .78rem; color: #6d8188; }

/* ---------- horizontal scroll ---------- */
.h-scroll-section { background: var(--dark); padding-top: 100px; overflow: hidden; }
.h-scroll-header { max-width: 1200px; margin: 0 auto; padding: 0 32px 60px; }
.h-scroll-header .section-title { color: var(--white); }
.h-scroll-container { height: 78vh; position: relative; }
.h-track { display: flex; height: 100%; width: max-content; will-change: transform; }
.h-panel { width: 62vw; max-width: 620px; height: 100%; flex-shrink: 0; padding: 0 20px; display: flex; align-items: center; }
.h-card { position: relative; width: 100%; height: 88%; border-radius: 26px; overflow: hidden; }
.h-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.h-card:hover img { transform: scale(1.06); }
.h-card-info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 30px;
  background: linear-gradient(0deg, rgba(3,52,66,.94) 10%, rgba(3,52,66,0) 100%); color: var(--white);
}
.h-card-info h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; margin-bottom: 8px; }
.h-card-info p { font-size: .92rem; opacity: .85; max-width: 380px; }
.h-scroll-hint { text-align: center; color: var(--teal-light); font-size: .8rem; letter-spacing: .1em; padding: 30px 0 90px; text-transform: uppercase; }

@media (max-width: 700px) {
  .h-panel { width: 84vw; }
}

/* ---------- packages ---------- */
.packages { padding: 140px 24px; background: var(--cream); }
.packages-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.package-card {
  background: var(--white); border-radius: 26px; overflow: hidden; box-shadow: 0 20px 50px -30px rgba(3,52,66,.35);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.package-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -25px rgba(3,52,66,.45); }
.media-slot { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.media-slot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.package-card:hover .media-slot img { transform: scale(1.08); }
.media-slot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,52,66,.55), transparent 55%); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.22); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .35s;
}
.play-btn svg { width: 22px; height: 22px; fill: var(--white); margin-left: 3px; }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.12); background: var(--orange); }
.media-slot-label {
  position: absolute; bottom: 14px; left: 16px; z-index: 2; color: var(--white); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase; opacity: .85;
}
.package-body { padding: 28px 30px 32px; }
.package-body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.package-body p { color: #63767d; font-size: .92rem; line-height: 1.6; margin-bottom: 22px; }
.package-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--orange); display: flex; flex-direction: column; line-height: 1.1; }
.price small { font-family: var(--font-body); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #96a5aa; font-weight: 600; }

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* ---------- events ---------- */
.events { position: relative; padding: 160px 24px; overflow: hidden; }
.events-bg { position: absolute; inset: 0; }
.events-bg img { width: 100%; height: 100%; object-fit: cover; }
.events-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(3,52,66,.95) 30%, rgba(3,52,66,.55) 100%); }
.events-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); }
.events-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: .98; margin-bottom: 22px; }
.events-content > p { opacity: .88; line-height: 1.7; margin-bottom: 34px; max-width: 540px; }
.events-gallery { display: flex; gap: 18px; margin-bottom: 40px; }
.events-gallery-item { width: 130px; height: 170px; border-radius: 18px; overflow: hidden; transform: rotate(-4deg); transition: transform .4s var(--ease); }
.events-gallery-item:nth-child(2) { transform: rotate(3deg) translateY(14px); }
.events-gallery-item:hover { transform: rotate(0) scale(1.05); }
.events-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- quote ---------- */
.quote-section { padding: 110px 24px; background: var(--teal); text-align: center; }
.quote-text { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: clamp(1.5rem, 3.6vw, 2.6rem); max-width: 900px; margin: 0 auto; line-height: 1.25; }
.quote-text em { color: var(--dark); }

/* ---------- cta ---------- */
.cta { position: relative; background: var(--orange); padding: 150px 24px; text-align: center; overflow: hidden; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.shape-a { width: 340px; height: 340px; top: -140px; left: -100px; }
.shape-b { width: 220px; height: 220px; bottom: -100px; right: -60px; }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 18px; }
.cta h2 em { color: var(--dark); }
.cta > .cta-inner > p { color: rgba(255,255,255,.92); font-size: 1.05rem; margin-bottom: 38px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--dark-2); padding: 70px 24px 30px; }
.footer-inner { max-width: 800px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-inner .nav-logo { justify-content: center; }
.footer-inner > p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin: 10px 0; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .88rem; position: relative; }
.footer-links a:hover { color: var(--orange-2); }
.footer-copy { font-size: .76rem !important; color: rgba(255,255,255,.4) !important; margin-top: 20px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { right: 10px; }
}
@media (max-width: 560px) {
  .hero { padding-top: 120px; }
  .stats-row { gap: 24px; }
  .events-gallery-item { width: 100px; height: 130px; }
}
