/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0b0f1a;
  --bg-card: #12182b;
  --bg-alt: #0f1525;
  --text: #e8ecf4;
  --text-muted: #9aa3b8;
  --accent: #ff6b4a;
  --accent-2: #ffb347;
  --gold: #f0c75e;
  --blue: #4cc9f0;
  --purple: #7b5cff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1140px, 92%); margin-inline: auto; }
code { background: rgba(255,255,255,.08); padding: .15rem .4rem; border-radius: 4px; font-size: .85em; }

/* ===== BACKGROUND ===== */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(123,92,255,.18), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255,107,74,.12), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(76,201,240,.08), transparent);
  pointer-events: none;
  z-index: -1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s, backdrop-filter .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(11,15,26,.85);
  backdrop-filter: blur(16px);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-icon { font-size: 1.3rem; }
.logo-text span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #ff8f6b);
  color: #fff;
  border: none;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,74,.35);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 80%);
  height: 100vh;
  background: var(--bg-card);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 1.5rem;
  transition: right .35s ease;
  border-left: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-size: 1.15rem; font-weight: 500; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem 0 4rem;
  width: min(1140px, 92%);
  margin-inline: auto;
}
.badge {
  display: inline-block;
  background: rgba(255,107,74,.15);
  color: var(--accent);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,107,74,.25);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--text); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8f6b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255,107,74,.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,107,74,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--text);
  padding: .55rem 1.1rem;
  font-size: .85rem;
  border-radius: 999px;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-amazon {
  background: linear-gradient(135deg, #ff9900, #ffb84d);
  color: #111;
}
.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,153,0,.35);
}
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span {
  font-size: .8rem;
  color: var(--text-muted);
}

/* Passport visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.passport-card {
  width: 280px;
  background: linear-gradient(160deg, #1a2340, #0d1225);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(4deg);
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-12px); }
}
.passport-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.stamp {
  background: rgba(255,107,74,.2);
  color: var(--accent);
  padding: .25rem .6rem;
  border-radius: 4px;
  font-weight: 700;
  border: 1px dashed var(--accent);
}
.passport-body {
  text-align: center;
  padding: 1.5rem 0;
}
.destination-blur {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  filter: blur(4px);
  letter-spacing: .2em;
  margin-bottom: .5rem;
  user-select: none;
}
.passport-body p {
  font-size: .85rem;
  color: var(--text-muted);
}
.midweek-badge {
  margin-top: 1rem;
  display: inline-block;
  background: rgba(76,201,240,.15);
  color: var(--blue);
  padding: .3rem .8rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
}

/* ===== TRUST + LIVE ===== */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.trust-bar p {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-logos span {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
}

.live-bar {
  padding: .8rem 0;
  background: rgba(76,201,240,.06);
  border-bottom: 1px solid rgba(76,201,240,.12);
}
.live-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.btn-refresh {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
  padding: .3rem .7rem;
  border-radius: 6px;
  font-size: .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s;
}
.btn-refresh:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--bg-alt); }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(123,92,255,.04), transparent);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .8rem;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== FILTERS ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===== OFFERS ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.offer-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,15,26,.8);
  backdrop-filter: blur(8px);
  padding: .3rem .7rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
}
.offer-tag.midweek {
  background: rgba(76,201,240,.9);
  color: #0b0f1a;
}
.offer-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-agency {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.offer-body h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.offer-body p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}
.offer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.offer-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}
.offer-price span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.offer-nights {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===== MANIFESTO ===== */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.manifesto-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.manifesto-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.manifesto-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.manifesto-card p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* ===== AGENCIES ===== */
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.agency-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .3s;
}
.agency-card:hover { border-color: rgba(255,107,74,.3); }
.agency-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.agency-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.agency-card > p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.agency-card ul { margin-bottom: 1.3rem; }
.agency-card li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .25rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.agency-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .75rem;
}

/* ===== AMAZON ===== */
.amazon-banner {
  background: linear-gradient(135deg, rgba(255,153,0,.12), rgba(255,107,74,.08));
  border: 1px solid rgba(255,153,0,.25);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.amazon-banner h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.amazon-banner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-inline: auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s;
}
.product-card:hover { transform: translateY(-5px); }
.product-img { height: 160px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.2rem; }
.product-badge {
  display: inline-block;
  background: rgba(255,107,74,.15);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 4px;
  margin-bottom: .5rem;
}
.product-body h4 { font-size: 1rem; margin-bottom: .4rem; }
.product-body p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
}
.product-price {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .9rem;
}

/* ===== SEO ===== */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.seo-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,.06);
}
.seo-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.seo-card ul { font-size: .9rem; color: var(--text-muted); }
.seo-card li { padding: .3rem 0; padding-left: 1rem; position: relative; }
.seo-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.keyword-list li strong { color: var(--text); }
.seo-note {
  background: rgba(76,201,240,.08);
  border: 1px solid rgba(76,201,240,.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step { text-align: center; padding: 1.5rem; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 25px rgba(255,107,74,.3);
}
.step h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.step p { font-size: .9rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: .95rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255,107,74,.06));
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: .8rem;
}
.cta-final p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 280px;
}
.footer h4 {
  font-size: .9rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer ul li { margin-bottom: .5rem; }
.footer ul a {
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer ul a:hover { color: var(--accent); }
.footer p { font-size: .9rem; color: var(--text-muted); }
.affiliate-note {
  margin-top: 1rem;
  font-size: .75rem !important;
  line-height: 1.5;
  opacity: .7;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .85rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .passport-card { transform: rotate(0); width: 240px; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}

/* ===== LIVE RESULTS ===== */
.live-results-section {
  background: rgba(76,201,240,.04);
  border-bottom: 1px solid rgba(76,201,240,.12);
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid rgba(76,201,240,.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: transform .2s, border-color .2s;
  display: block;
}
.live-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
}
.live-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.live-card span {
  font-size: .8rem;
  color: var(--blue);
}
.live-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== KEYWORD CARDS (última hora) ===== */
.keyword-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.kw-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.kw-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.kw-card strong {
  font-size: .95rem;
}
.kw-card span {
  font-size: .8rem;
  color: var(--accent);
}

/* ===== KEYWORD GROUPS (SEO section) ===== */
.kw-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kw-group h3 {
  font-size: 1.1rem;
  margin-bottom: .9rem;
  color: var(--gold);
}
.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.kw-tags a {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  color: var(--text-muted);
  transition: all .2s;
}
.kw-tags a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===== GOOGLE FLIGHTS SECTION ===== */
.flights-hero-card {
  background: linear-gradient(135deg, rgba(66,133,244,.12), rgba(52,168,83,.08));
  border: 1px solid rgba(66,133,244,.25);
  border-radius: var(--radius);
  padding: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.flights-hero-text h3 {
  font-size: 1.5rem;
  margin-bottom: .7rem;
}
.flights-hero-text p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.flights-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

.flights-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.tip-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  text-align: center;
}
.tip-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .95rem;
  margin: 0 auto .9rem;
}
.tip-card h4 {
  font-size: 1rem;
  margin-bottom: .5rem;
}
.tip-card p {
  font-size: .85rem;
  color: var(--text-muted);
}

.flights-quick h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.flights-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.flight-link {
  background: var(--bg-card);
  border: 1px solid rgba(66,133,244,.2);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.flight-link:hover {
  border-color: #4285f4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66,133,244,.15);
}
.flight-link strong {
  font-size: .95rem;
}
.flight-link span {
  font-size: .8rem;
  color: #4285f4;
}

.flights-combo {
  background: rgba(255,107,74,.08);
  border: 1px solid rgba(255,107,74,.2);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  text-align: center;
}
.flights-combo h3 {
  font-size: 1.15rem;
  margin-bottom: .8rem;
}
.flights-combo p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* ===== AFFILIATE DISCLOSURE ===== */
.affiliate-disclosure {
  font-size: .8rem !important;
  color: var(--text-muted) !important;
  max-width: 520px;
  margin: 0 auto 1.2rem !important;
  line-height: 1.5;
  opacity: .9;
}

/* ===== LEGAL BLOCKS IN FOOTER ===== */
.legal-blocks {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.legal-block {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}
.legal-block h4 {
  font-size: .95rem;
  margin-bottom: .6rem;
  color: var(--gold);
}
.legal-block p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.legal-block a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-owner {
  margin-top: 1rem !important;
  font-size: .85rem !important;
  color: var(--text-muted);
}
.footer-owner a {
  color: var(--accent);
}
.footer-disclaimer {
  margin-top: .4rem;
  font-size: .75rem !important;
  opacity: .7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(18, 24, 43, .97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.2rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,.4);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-inner {
  width: min(960px, 96%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-inner p {
  font-size: .85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 220px;
  line-height: 1.5;
}
.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ===== QUIZ ===== */
.quiz-section {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
.quiz-steps {
  max-width: 640px;
  margin: 0 auto;
}
.quiz-step {
  display: none;
  text-align: center;
}
.quiz-step.active {
  display: block;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
@media (max-width: 520px) {
  .quiz-options { grid-template-columns: 1fr; }
}
.quiz-btn {
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,.12);
  color: var(--text);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.quiz-btn:hover {
  border-color: var(--accent);
  background: rgba(255,107,74,.1);
  transform: translateY(-2px);
}
.quiz-result {
  background: var(--bg-card);
  border: 1px solid rgba(255,107,74,.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}
.quiz-result h4 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  color: var(--gold);
}
.quiz-result p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: .95rem;
}
.quiz-result .btn {
  margin-right: .5rem;
  margin-bottom: .5rem;
}

/* ===== SHARE BAR ===== */
.share-bar {
  padding: 1rem 0;
  background: rgba(37, 211, 102, .06);
  border-top: 1px solid rgba(37, 211, 102, .12);
  border-bottom: 1px solid rgba(37, 211, 102, .12);
}
.share-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}
.share-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #25d366;
  color: #fff !important;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, .35);
}

/* ===== EXIT INTENT ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.exit-overlay.show {
  opacity: 1;
  visibility: visible;
}
.exit-modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  transform: scale(.95);
  transition: transform .3s;
}
.exit-overlay.show .exit-modal {
  transform: scale(1);
}
.exit-close {
  position: absolute;
  top: .7rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.exit-close:hover { color: var(--text); }
.exit-icon {
  font-size: 2.5rem;
  margin-bottom: .8rem;
}
.exit-modal h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
}
.exit-modal > p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.3rem;
}
.exit-actions {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1rem;
}
.exit-actions .btn {
  width: 100%;
  justify-content: center;
}
.exit-hint {
  font-size: .75rem !important;
  color: var(--text-muted);
  opacity: .8;
}
