/* =========================================
   NEW RED/BLACK DESIGN TOKENS
   ========================================= */
:root {
  --primary-red: #D50000;      /* Aggressive banner red */
  --primary-red-hover: #AA0000;
  --pure-black: #050505;       /* Deep solid black */
  --almost-white: #FFFFFF;
  --soft-grey: #DDDDDD;        /* Neutral light grey */
  --text-dark: #111111;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--almost-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

a { text-decoration: none; }
ul { list-style: none; }

/* UTILITIES */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 2rem; }
.inline-block { display: inline-block; }

.text-red { color: var(--primary-red) !important; }
.text-black { color: var(--pure-black) !important; }
.text-white { color: var(--almost-white) !important; }
.text-grey { color: #888; }
.text-bold { font-weight: 800; }

.bg-white { background-color: var(--almost-white) !important; }
.bg-light { background-color: var(--soft-grey) !important; }
.bg-black { background-color: var(--pure-black) !important; }
.bg-red { background-color: var(--primary-red) !important; }

.border-red { border: 2px solid var(--primary-red) !important; }
.border-black { border: 2px solid var(--pure-black) !important; }

.section { padding: 80px 0; }
.section-title { font-size: 4rem; }
.subtitle-block { display: block; font-family: var(--font-body); font-size: 1.2rem; text-transform: none; font-weight: 600; margin-top: 10px; }
.lead-text { font-size: 1.4rem; font-weight: 700; }
.body-text { font-size: 1.15rem; color: #444; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  background-color: var(--almost-white);
  color: var(--pure-black);
  padding: 18px 45px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  border: 4px solid var(--almost-white);
  transition: all 0.3s ease;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--almost-white);
}

.bg-black .btn-primary {
  background-color: var(--primary-red);
  color: var(--almost-white);
  border-color: var(--primary-red);
}
.bg-black .btn-primary:hover {
  background-color: transparent;
  color: var(--primary-red);
}

.btn-large { font-size: 2.2rem; padding: 20px 60px; }

/* =========================================
   HERO SPLIT BANNER STYLE
   ========================================= */
.hero-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-col {
  flex: 1;
  padding: 60px 40px;
  display: flex;
}

.hero-red {
  background-color: var(--primary-red);
  color: var(--almost-white);
}

.hero-black {
  background-color: var(--pure-black);
  color: var(--almost-white);
  text-align: center;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
  }
  .hero-red {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 2;
    padding-right: 15%;
    padding-left: 10%;
    justify-content: center;
  }
  .hero-black {
    margin-left: -15%;
    padding-left: 17%;
    padding-right: 5%;
    justify-content: center;
  }
}

.badge-edades {
  background-color: var(--almost-white);
  color: var(--pure-black);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 6px 20px;
  border-radius: 2px;
  font-weight: bold;
}

.logo-container .logo-aniversario {
  background-color: var(--primary-red);
  border: 3px solid var(--almost-white);
  color: var(--almost-white);
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 800;
  padding: 4px 12px;
  display: inline-block;
  transform: rotate(-3deg);
  margin-bottom: -5px;
  position: relative;
  z-index: 10;
}

.logo-main {
  font-size: 6rem;
  line-height: 1;
  margin: 0;
  letter-spacing: 1px;
}

.outline-white {
  -webkit-text-stroke: 2px #fff;
  text-shadow: 0px 4px 8px rgba(0,0,0,0.4);
}

.outline-black {
  -webkit-text-stroke: 2px #000;
  text-shadow: 0px 4px 8px rgba(0,0,0,0.4);
}

.distances-pill {
  background-color: var(--pure-black);
  color: var(--almost-white);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  padding: 5px 20px;
  border: 3px solid var(--almost-white);
}
.distances-pill .separator { margin: 0 10px; color: var(--primary-red); }

.date-item {
  display: flex;
  align-items: center;
}
.date-box {
  background-color: var(--almost-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 6px 15px;
  border-radius: 20px;
  min-width: 140px;
  text-align: center;
  margin-right: 10px;
}
.date-dist {
  font-family: var(--font-heading);
  font-size: 2rem;
  border: 2px solid var(--almost-white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slogan {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: none;
  color: #CCC;
  line-height: 1.4;
}
.hero-slogan .text-white { font-weight: 800; }

/* COUNTDOWN OVERRIDE */
.countdown-container {
  background: transparent;
  padding: 0;
  border: none;
}
.countdown-label {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.countdown { gap: 15px; }
.time-box span { font-size: 3.5rem; color: var(--almost-white); text-shadow: 0 5px 15px rgba(213,0,0,0.5); }
.time-box small { color: #888; font-weight: bold; }

/* =========================================
   SECTIONS
   ========================================= */
.highlight-card {
  background-color: var(--pure-black);
  border-left: 8px solid var(--primary-red);
  padding: 40px;
  max-width: 800px;
  margin: 2rem auto;
}
.highlight-phrase { font-family: var(--font-heading); font-size: 2.5rem; }

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-item {
  background: var(--almost-white);
  padding: 30px;
  transition: transform 0.2s;
}
.step-item:hover { transform: translateY(-5px); }
.step-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem;
  margin: 0 auto 15px;
}

/* CIRCLE MEDALS RE-STYLED */
.circle-grid { gap: 40px; justify-items: center; }
.distance-item { width: 100%; transition: transform 0.3s ease; }
.distance-item:hover .circle-medal { transform: scale(1.08) translateY(-10px); }

.circle-medal {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 10px solid #E5E5E5;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}
.circle-silver { background: linear-gradient(135deg, #f5f5f5, #b3b3b3); border-color: #E5E5E5; }
.circle-black { background: linear-gradient(135deg, #333333, #050505); border-color: #DDDDDD; }
.circle-red { background: linear-gradient(135deg, #ff3333, var(--primary-red)); border-color: #DDDDDD; }

.circle-dist { font-family: var(--font-heading); font-size: 6.5rem; line-height: 0.8; margin-bottom: 5px; }
.circle-logo { display: flex; flex-direction: column; line-height: 0.85; font-size: 2rem; }
.font-bebas { font-family: var(--font-heading); }
.barbell-line { width: 45px; height: 5px; background-color: var(--primary-red); margin-top: 15px; border-radius: 3px; }
.barbell-line.bg-white { background-color: var(--almost-white); }

.date-box-simple {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  border: 3px solid var(--primary-red);
  padding: 4px 25px;
  border-radius: 30px;
  display: inline-block;
  background-color: transparent;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.card-tagline { font-family: var(--font-body); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; color: #FFF; }
.slogan-text { font-size: 2.5rem; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
/* OPTIONS GRID */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.option-card {
  background-color: #111;
  border: 2px solid #333;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}
.option-card:hover { transform: translateY(-5px); border-color: var(--primary-red); }
.option-title { font-size: 2.5rem; margin-bottom: 10px; font-family: var(--font-heading); }
.option-desc { font-size: 1.1rem; color: #aaa; }
.premium-option {
  background-color: #1a0000;
  border: 3px solid var(--primary-red);
}
.premium-option:hover { box-shadow: 0 0 20px rgba(213,0,0,0.5); }
.super-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--almost-white);
  color: var(--pure-black);
  padding: 5px 15px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}

/* MEDIA & KITS */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.product-img {
  width: 100%;
  height: 300px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.product-img:hover {
  transform: translateY(-5px) scale(1.02);
}

/* PRICING TABLE */
.pricing-table {
  border: 4px solid var(--pure-black);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.p-4 { padding: 1rem; }
.font-bold { font-weight: bold; }
.price-list { list-style: none; margin: 0; padding: 30px; background-color: var(--almost-white); }
.price-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.3rem;
  font-weight: 600;
}
.price-item:last-child { border-bottom: none; }
.price-name { color: var(--pure-black); font-family: var(--font-body); }
.price-value { font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 1px; }

.benefits-block {
  padding: 30px 40px;
  border: 3px solid var(--primary-red);
  border-radius: 8px;
}
.benefits-list li {
  display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
  font-size: 1.2rem; font-weight: 600;
}
.benefit-icon {
  width: 35px; height: 35px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}

/* CLOSING */
.question-block {
  padding: 60px;
  border-radius: 0;
  border-top: 5px solid var(--almost-white);
  border-bottom: 5px solid var(--almost-white);
}

/* ANIMATIONS */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
.massive-title { font-size: 5rem; }

@media (max-width: 900px) {
  .hero-col { padding: 40px 20px; }
  .hero-red { align-items: center !important; text-align: center; }
  .logo-main { font-size: 3.2rem; }
  .distances-pill { font-size: 1.3rem; padding: 5px 15px; }
  .date-box { font-size: 1.1rem; min-width: 90px; padding: 5px 10px; }
  .date-dist { width: 35px; height: 35px; font-size: 1.2rem; }
  .hero-slogan { font-size: 1.4rem; }
  .countdown { flex-wrap: wrap; }
  .time-box span { font-size: 2.5rem; }
  .media-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.8rem; }
  .massive-title { font-size: 3.5rem; }
  .highlight-phrase { font-size: 2rem; }
  
  .circle-medal { width: 220px; height: 220px; }
  .circle-dist { font-size: 5.5rem; }
  
  .question-block { padding: 30px 20px; }
  .btn-large { font-size: 1.5rem; padding: 15px 30px; width: 100%; box-sizing: border-box; }
  .price-item { flex-direction: column; text-align: left; gap: 5px; border-bottom: 2px dashed #ddd; padding: 20px 0; }
  .price-list { padding: 15px; }
  
  .steps-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
}
