/* ============================================================
   IKALI HOSTEL — Landing Page Styles
   Meta Verification Landing
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&family=Caveat:wght@400;600&display=swap');

/* --- Custom Properties --- */
:root {
  --primary: #F6C973;
  --primary-dark: #E0B45A;
  --primary-light: #FAD98F;
  --secondary: #0047AB;
  --secondary-dark: #003580;
  --secondary-light: #2563C4;
  --green-deep: #0047AB;
  --green-olive: #2563C4;
  --green-light: #5B8FD9;
  --terracotta: #0047AB;
  --terracotta-dark: #003580;
  --terracotta-light: #2563C4;
  --mustard: #F6C973;
  --mustard-light: #FAD98F;
  --cream: #F7F2EB;
  --cream-dark: #EDE5D8;
  --sand: #E8DFD0;
  --warm-black: #1C1917;
  --warm-gray: #44403C;
  --warm-gray-light: #78716C;
  --white: #FFFDF9;
  --cta-orange: #F6C973;
  --cta-orange-hover: #E0B45A;

  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;

  --max-width: 1100px;
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--warm-black);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Grain Texture Overlay --- */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 71, 171, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--warm-gray);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--green-deep);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

/* Language picker */
.nav__lang {
  position: relative;
}

.nav__lang-btn {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-gray);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.nav__lang-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.nav__lang-dropdown {
  position: absolute;
  top: 100%;
  padding-top: 0.4rem;
  right: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.nav__lang:hover .nav__lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__lang-option {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--warm-gray);
  transition: background 0.15s, color 0.15s;
}

.nav__lang-option:hover {
  background: var(--cream);
  color: var(--green-deep);
}

.nav__lang-option--active {
  font-weight: 600;
  color: var(--secondary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  background: var(--warm-black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Gold color overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(246, 201, 115, 0.65);
  z-index: 1;
}

/* Decorative arch pattern — evokes colonial Barrio Antiguo architecture */
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* Subtle radial warmth */
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(0, 71, 171, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 60%, rgba(0, 71, 171, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__badge .dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--secondary);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero__stat-value .star {
  color: var(--secondary);
  font-size: 0.9em;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 71, 171, 0.35);
}

.btn--primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 71, 171, 0.45);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}

.btn--outline:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.btn--terracotta {
  background: var(--secondary);
  color: var(--white);
}

.btn--terracotta:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  padding: 6rem 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__overline {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}

.about h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.about p strong {
  color: var(--warm-black);
  font-weight: 600;
}

/* Feature tiles on the right */
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-tile {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}

.feature-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-tile__icon--terracotta { background: rgba(0, 71, 171, 0.1); }
.feature-tile__icon--green { background: rgba(0, 71, 171, 0.08); }
.feature-tile__icon--mustard { background: rgba(246, 201, 115, 0.2); }
.feature-tile__icon--sand { background: rgba(232, 223, 208, 0.6); }

.feature-tile h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.35rem;
}

.feature-tile p {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events {
  padding: 6rem 0;
  background: var(--white);
}

.events__overline {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.5rem;
}

.events h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.events__intro {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.events__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--white);
  min-height: 260px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.event-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.event-card--palnorte {
  background: #1a1a2e;
}

.event-card--palnorte .event-card__overlay {
  background: linear-gradient(to top, rgba(15, 15, 30, 0.85) 0%, rgba(15, 15, 30, 0.4) 50%, rgba(15, 15, 30, 0.2) 100%);
}

.event-card--fifa {
  background: #1b4332;
}

.event-card--fifa .event-card__overlay {
  background: linear-gradient(to top, rgba(20, 50, 35, 0.85) 0%, rgba(20, 50, 35, 0.4) 50%, rgba(20, 50, 35, 0.2) 100%);
}

.event-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.event-card__body {
  position: relative;
  z-index: 2;
}

.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.event-card__body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.event-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: gap 0.2s;
}

/* Events promo banner */
.events__promo {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.events__promo-inner {
  max-width: 520px;
  margin: 0 auto;
}

.events__promo-label {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.events__promo h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.events__promo p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.events__code {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: rgba(246, 201, 115, 0.25);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.05em;
  color: var(--warm-black);
  letter-spacing: 0.04em;
}

/* ============================================================
   GROUPS SECTION
   ============================================================ */
.groups {
  position: relative;
  padding: 6rem 0;
  background: var(--cream);
}

.groups__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.groups__overline {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.5rem;
}

.groups__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.groups__text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.groups__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.groups__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.groups__highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.groups__highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 25, 23, 0.05);
}

.groups__highlight-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 71, 171, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.groups__highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.15rem;
}

.groups__highlight p {
  font-size: 0.85rem;
  color: var(--warm-gray-light);
  margin: 0;
  line-height: 1.4;
}

/* Responsive — Events & Groups */
@media (max-width: 768px) {
  .events__grid {
    grid-template-columns: 1fr;
  }

  .groups__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .event-card {
    min-height: 220px;
  }

  .events__promo {
    padding: 2rem 1.5rem;
  }

  .groups__actions {
    flex-direction: column;
  }
}

/* ============================================================
   DIRECT BOOKING CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--secondary);
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 71, 171, 0.65);
  z-index: 1;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__accent {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--primary-light);
  display: block;
  margin-bottom: 0.5rem;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.cta-section .btn--primary {
  background: var(--primary);
  color: var(--warm-black);
  box-shadow: 0 4px 16px rgba(246, 201, 115, 0.3);
}

.cta-section .btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(246, 201, 115, 0.4);
}

.cta-section .guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--warm-gray-light);
}

.guarantee__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 71, 171, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--secondary-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--warm-black);
  color: var(--warm-gray-light);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  margin-bottom: 0.75rem;
}

.footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--warm-gray-light);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer__bottom a {
  text-decoration: none;
  color: var(--warm-gray-light);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--cream);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-page {
  padding: 8rem 0 4rem;
  background: var(--cream);
  min-height: 100vh;
}

.legal-page__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.legal-page__header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.legal-page__header p {
  color: var(--warm-gray-light);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 740px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin: 2.5rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content strong {
  color: var(--warm-black);
  font-weight: 600;
}

.legal-content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--terracotta-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 7rem 1.25rem 5rem;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero__stat {
    flex: 0 0 calc(50% - 0.75rem);
    text-align: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__stats {
    gap: 1rem;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    padding: 1.25rem;
  }

  .legal-page {
    padding: 6rem 0 3rem;
  }
}

/* ============================================================
   WHATSAPP FLOATING WIDGET
   ============================================================ */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: var(--font-body);
}

.wa-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  position: relative;
  z-index: 2;
}

.wa-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-widget__icon-close {
  display: none;
}

.wa-widget__toggle:checked ~ .wa-widget__btn .wa-widget__icon-wa {
  display: none;
}

.wa-widget__toggle:checked ~ .wa-widget__btn .wa-widget__icon-close {
  display: block;
}

/* Popup */
.wa-widget__popup {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-widget__toggle:checked ~ .wa-widget__popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-widget__header {
  background: #075E54;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wa-widget__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.wa-widget__avatar img {
  width: 30px;
  height: auto;
}

.wa-widget__name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.wa-widget__status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.wa-widget__body {
  padding: 1.25rem;
  background: #E5DDD5;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9bfb0' fill-opacity='0.15'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1'/%3E%3Ccircle cx='30' cy='60' r='1.2'/%3E%3Ccircle cx='70' cy='70' r='0.8'/%3E%3C/g%3E%3C/svg%3E");
}

.wa-widget__bubble {
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 10px 10px 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  max-width: 85%;
  position: relative;
}

.wa-widget__bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-left: 6px solid transparent;
}

.wa-widget__send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.wa-widget__send:hover {
  background: #1EBE57;
}

@media (max-width: 480px) {
  .wa-widget__popup {
    width: calc(100vw - 2rem);
    right: -0.5rem;
  }

  .wa-widget {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ============================================================
   SECRET OFFER MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 440px;
  width: calc(100% - 2rem);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s ease;
  overflow: hidden;
}

.modal--visible .modal__card {
  transform: translateY(0) scale(1);
}

.modal__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--warm-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.modal__close:hover {
  background: var(--cream-dark);
  color: var(--warm-black);
}

.modal__tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--warm-black);
  color: var(--primary-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.modal__text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.modal__text strong {
  color: var(--warm-black);
}

.modal__code-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.modal__code-box > strong {
  font-family: monospace;
  font-size: 1.2em;
  color: var(--secondary);
  letter-spacing: 0.04em;
}

.modal__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.modal__dismiss {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--warm-gray-light);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.modal__dismiss:hover {
  color: var(--warm-gray);
}

@media (max-width: 480px) {
  .modal__card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .modal__title {
    font-size: 1.5rem;
  }
}
