/* Limón Pass - Compact Landing Page */

:root {
  --c-yellow: #FFD600;
  --c-navy: #1B1464;
  --c-purple: #7B2D9E;
  --c-purple-dark: #5A1F75;
  --c-magenta: #E91E8C;
  --c-green: #1A7233;
  --c-orange: #FF6B00;
  --c-white: #FFFFFF;

  --f-display: 'Bangers', cursive;
  --f-heading: 'Oswald', sans-serif;
  --f-body: 'Nunito', sans-serif;
}

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

body {
  background: #FFD600;
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
  line-height: 1.4;
  color: #1B1464;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ═══ HERO ═══ */
.hero {
  padding: 16px 0 20px;
  text-align: center;
}

.hero-header {
  margin-bottom: 16px;
}

.location-badge {
  display: inline-block;
  background: var(--c-purple);
  color: #fff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.logo {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}

/* Hero Card */
.hero-card {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-dark) 100%);
  border-radius: 24px;
  padding: 24px 20px;
  position: relative;
  box-shadow: 0 12px 40px rgba(123, 45, 158, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-yellow);
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--f-display);
  font-size: 48px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 12px;
}

.price-block {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.discount-badge {
  background: var(--c-magenta);
  color: #fff;
  font-family: var(--f-display);
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.5);
  animation: pulse-discount 1.5s ease-in-out infinite;
  transform: rotate(-5deg);
}

@keyframes pulse-discount {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(-5deg) scale(1.08); }
}

.price-current {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--c-yellow);
  line-height: 1;
}

/* Price Comparison */
.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.price-before {
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-before .rate {
  font-family: var(--f-heading);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.price-before .per {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.arrow {
  font-size: 20px;
  color: var(--c-yellow);
  font-weight: bold;
}

.price-after {
  background: var(--c-yellow);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}

.price-after .rate {
  font-family: var(--f-heading);
  font-size: 20px;
  color: var(--c-purple);
  font-weight: 700;
}

.price-after .per {
  font-size: 12px;
  color: var(--c-purple);
}

.offer-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-purple);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Savings Badge */
.savings-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--c-magenta);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.savings-amount {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 1px;
}

.savings-percent {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-purple);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
  transition: transform 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.hero-mascot {
  display: none;
}

@media (min-width: 520px) {
  .hero-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 28px 32px;
    gap: 24px;
  }

  .hero-content {
    flex: 1;
  }

  .price-block {
    justify-content: flex-start;
  }

  .price-comparison {
    justify-content: flex-start;
  }

  .hero-mascot {
    display: block;
    flex-shrink: 0;
  }

  .hero-mascot img {
    width: 130px;
    height: auto;
  }
}

/* ═══ BENEFITS ═══ */
.benefits {
  padding: 20px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.benefit-text strong {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-purple);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.benefit-text span {
  font-size: 12px;
  color: rgba(27,20,100,0.75);
  font-weight: 600;
}

/* Main Highlight - 8 Hours */
.main-highlight {
  background: linear-gradient(135deg, var(--c-magenta) 0%, #C2185B 100%);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 25px rgba(233, 30, 140, 0.4);
  margin-bottom: 12px;
  border: 3px solid rgba(255,255,255,0.2);
}

.main-highlight-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.main-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-highlight-title {
  font-family: var(--f-display);
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}

.main-highlight-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* Secondary Highlights Container */
.secondary-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Secondary Highlight */
.secondary-highlight {
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-dark) 100%);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(123, 45, 158, 0.25);
}

.secondary-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.secondary-highlight strong {
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.secondary-highlight span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

@media (min-width: 520px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 10px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .benefit-text {
    align-items: center;
  }

  .secondary-highlights {
    flex-direction: row;
    gap: 12px;
  }

  .secondary-highlight {
    flex: 1;
  }

  .main-highlight-icon {
    width: 64px;
    height: 64px;
  }

  .secondary-icon {
    width: 40px;
    height: 40px;
  }
}

/* ═══ URGENCY BANNER ═══ */
.urgency-banner {
  background: var(--c-orange);
  padding: 14px 0;
  text-align: center;
}

.urgency-banner p {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

.urgency-banner .deadline {
  margin-top: 8px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.5px;
  animation: none;
  opacity: 0.95;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--c-purple);
  padding: 24px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-discount {
  background: var(--c-magenta);
  color: #fff;
  font-family: var(--f-display);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(233, 30, 140, 0.5);
}

.footer-current {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--c-yellow);
}

.btn-buy {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-purple);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.5);
  transition: transform 0.2s;
}

.btn-buy:hover {
  transform: translateY(-2px);
}

.footer-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-help span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.btn-whatsapp {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(26, 114, 51, 0.4);
  transition: transform 0.2s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

/* Footer Info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-info-text strong {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-info-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

@media (min-width: 520px) {
  .footer-info {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

.footer-brand {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
