/* ---------- THEME ---------- */
:root {
  --bg: #FFFDF9;
  --paper: #FFFFFF;
  --ink: #16181d;
  --muted: #5C6674;
  --brand: #E9A86B;
  --brand-2: #2F4858;
  --ok: #1A9D57;
  --shadow: 0 16px 40px rgba(25,35,55,.08);
  --radius: 18px;
  --gap: 24px;
  --max: 1120px;
  --ring: 0 0 0 3px rgba(233,168,107,.28);

  /* Para FAQ */
  --card: var(--paper);
  --border: rgba(40,50,70,.08);
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: .96; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--max); margin: auto; padding: 28px 20px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  background: rgba(255,253,249,.85);
  border-bottom: 1px solid rgba(40,50,70,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 800; letter-spacing: .2px; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-link { font-weight: 700; color: #8a5e2f; padding: 8px 10px; border-radius: 10px; cursor: pointer; }
.nav-link:hover { background: #FFF3E8; }
.nav-link.ask {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; line-height: 1;
  border: 1px solid var(--brand); border-radius: 999px;
  background: #fff; color: #8a5e2f !important;
}
.nav-link.ask:hover { background: #FFF3E8; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .18s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,.04);
  cursor: pointer;
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--brand); color: #120a00; }
.btn.primary:hover { filter: saturate(110%) brightness(1.02); }
.btn.secondary { border: 1px solid var(--brand); color: #8a5e2f; background: #fff; }
.btn.secondary:hover { background: #FFF3E8; }
.btn.full { width: 100%; text-align: center; }
.btn.small { padding: 9px 14px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: 48px 20px 28px;
}
.hero-left .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,168,107,.20);
  color: #8a5e2f;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(30px,6vw,54px);
  margin: 0;
  line-height: 1.07;
}
.hero .muted { color: #6a7786; }
.hero p {
  color: var(--muted);
  font-size: clamp(16px,2.4vw,20px);
  max-width: 680px;
  margin: 10px 0 12px;
}
.bullets { margin: 0 0 14px 18px; padding: 0; color: var(--ink); }
.bullets li { margin: 6px 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right { display: flex; justify-content: center; }

/* ---------- AVATAR ---------- */
.avatar {
  display: block;
  width: min(360px, 42vw);
  height: auto;
  object-fit: contain;
  border: 0;
  background: transparent;
}
.avatar-wrap { position: relative; display: inline-block; }
.style-d .avatar {
  clip-path: ellipse(48% 44% at 50% 46%);
  filter: drop-shadow(0 18px 28px rgba(25,35,55,.12));
}
@media (max-width: 480px) {
  .style-d .avatar { clip-path: ellipse(52% 48% at 50% 46%); }
}

/* ---------- ABOUT ---------- */
.about-wide { margin-top: 8px; }
.about-inner {
  background: var(--paper);
  border: 1px solid rgba(40,50,70,.08);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}
.about-text .h2 { font-size: clamp(22px,3vw,30px); margin: 0 0 10px; }
.muted { color: var(--muted); }
.about-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chip {
  background: #F5F7FB;
  border: 1px solid rgba(40,50,70,.10);
  color: #2F4858;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: transform .12s ease;
}
.chip:hover { transform: translateY(-1px); }

/* ---------- WHY CHOOSE GRID ---------- */
.why { margin-top: 44px; margin-bottom: 16px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  background: var(--paper);
  border: 1px solid rgba(40,50,70,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(25,35,55,.12);
  border-color: rgba(233,168,107,.3);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(5deg);
}

.why-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.why-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.internal-link {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.internal-link:hover {
  color: #d89554;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PRICING ---------- */
.pricing { margin-top: 44px; }
.h2 { font-size: clamp(22px,3vw,30px); margin: 0 0 10px; text-align: center; }
.center { text-align: center; }
.grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3,1fr); justify-content: center; }
.card {
  background: var(--paper);
  border: 1px solid rgba(40,50,70,.08);
  padding: 24px 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(25,35,55,.10); }
.price-card { position: relative; }
.price-card.popular { border: 2px solid rgba(233,168,107,.65); }
.h3 { font-size: 20px; margin: 0 0 6px; }
.price { font-size: 32px; font-weight: 800; color: var(--brand); margin: 10px 0; }
.list { margin: 10px 0 16px; padding: 0; list-style: none; }
.list li { margin: 6px 0; color: var(--muted); }
.list li::before { content: "✓ "; color: var(--ok); font-weight: 900; margin-right: 6px; }
.ribbon {
  position: absolute;
  top: 12px;
  right: 18px;
  background: var(--brand-2);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .3px;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
  white-space: nowrap;
}
.ribbon.best { background: var(--brand); color: #120a00; font-weight: 700; }
.micro { font-size: 12px; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq h2 { margin: 6px 0 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 10px 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item[open] > summary { background: #FFF7EF; }
.faq-body { padding: 0 18px 18px; color: var(--muted); line-height: 1.6; }
.faq-item summary:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(135deg, #2F4858 0%, #1e3240 100%);
  color: #e8edf3;
  margin-top: 64px;
  padding: 48px 0 24px;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.footer-content {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #b8c5d4;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #b8c5d4;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-info {
  color: #b8c5d4;
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-btn {
  margin-top: 4px;
  padding: 8px 14px;
  background: rgba(233,168,107,0.15);
  border: 1px solid rgba(233,168,107,0.4);
  border-radius: 8px;
  color: var(--brand);
  font-weight: 600;
  display: inline-block;
  width: fit-content;
}

.footer-contact-btn:hover {
  background: rgba(233,168,107,0.25);
  border-color: var(--brand);
  transform: translateX(0) translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: #8a9bae;
  font-size: 13px;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-link {
  color: #8a9bae;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--brand);
}

.footer-separator {
  color: #5a6b7e;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- POLICY PAGES ---------- */
.policy-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 20px;
}

.policy-page h1 {
  font-size: clamp(32px, 5vw, 42px);
  margin: 0 0 8px;
  color: var(--ink);
}

.policy-page h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 32px 0 16px;
  color: var(--ink);
  border-bottom: 2px solid rgba(233,168,107,.3);
  padding-bottom: 8px;
}

.policy-page h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin: 24px 0 12px;
  color: var(--brand-2);
}

.policy-content {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.policy-content p {
  margin: 16px 0;
}

.policy-content ul, .policy-content ol {
  margin: 16px 0;
  padding-left: 28px;
}

.policy-content li {
  margin: 8px 0;
}

.policy-content a {
  color: var(--brand);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: #d89554;
}

.policy-content strong {
  color: var(--ink);
  font-weight: 700;
}

.policy-content code {
  background: #F5F7FB;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #2F4858;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}

.cookie-table thead {
  background: linear-gradient(135deg, #2F4858 0%, #1e3240 100%);
  color: #fff;
}

.cookie-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(40,50,70,.08);
  font-size: 14px;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table tbody tr:hover {
  background: rgba(233,168,107,.05);
}

.policy-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(40,50,70,.1);
  text-align: center;
}

@media (max-width: 640px) {
  .policy-page {
    padding: 24px 16px;
  }

  .cookie-table {
    font-size: 13px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 10px 12px;
  }
}

/* ---------- RESPONSIVE ---------- */
/* Tablets: mantener hero en 2 columnas */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 0.7fr; gap: 30px; }
  .avatar { width: min(280px, 38vw); }
}

/* Tablets y menores: ajustes generales */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; padding: 20px; }
  .about-icons { justify-content: flex-start; }
}

/* Móviles grandes: hero en 1 columna con foto centrada */
@media (max-width: 767px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero-right {
    justify-content: center;
    order: -1; /* Mueve la foto arriba del texto */
  }
  .avatar { width: min(220px, 60vw); }
}

@media (max-width: 920px) {
  .grid { grid-template-columns: 1fr; }
  .price { font-size: 28px; }
}
@media (max-width: 540px) {
  .nav { padding: 12px 16px; }
  .brand { font-size: 16px; line-height: 1; }
  .nav-actions { gap: 10px; align-items: center; }
  .btn.small {
    padding: 8px 12px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    border-radius: 12px !important;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cta-row .btn {
    width: 100%;
    max-width: 420px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll reveal animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.hero-left {
  animation: slideInLeft 0.8s ease-out;
}

.hero-right {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.avatar {
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.02);
}

/* Enhanced button hover with ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn:not(.sticky-cta .btn)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn:not(.sticky-cta .btn):hover::before {
  width: 300px;
  height: 300px;
}

/* Pricing cards enhanced hover */
.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(25,35,55,.14);
}

.price-card.popular:hover {
  border-color: var(--brand);
}

/* Price number animation */
.price {
  transition: color 0.3s ease, transform 0.3s ease;
}

.price-card:hover .price {
  transform: scale(1.08);
  color: #d89554;
}

/* Chip hover animation */
.chip {
  transition: transform 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px) scale(1.05);
  background: #E9F0F8;
}

/* FAQ accordion smooth animation */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 48px rgba(25,35,55,.12);
}

.faq-item[open] {
  background: linear-gradient(135deg, #FFF7EF 0%, #FFFFFF 100%);
}

/* Gradient hero background */
.hero {
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  right: -5%;
  bottom: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(233,168,107,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(47,72,88,0.04) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* CTA button icon animation */
.btn.primary::after {
  content: '→';
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn.primary:hover::after {
  transform: translateX(4px);
}

/* Trial card enhanced */
.trial-card.split {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trial-card.split:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 74px rgba(25,35,55,.16);
}

.trial-price {
  transition: transform 0.3s ease, color 0.3s ease;
}

.trial-col--right:hover .trial-price {
  transform: scale(1.05);
  color: #d89554;
}

/* Sticky CTA pulse animation */
.sticky-cta.visible .btn {
  animation: pulse 2s ease-in-out infinite;
}

.sticky-cta .btn:hover {
  animation: none;
}


/* Cookie note (si no lo tenías ya) */
.cookie{position:fixed; left:0; right:0; bottom:0; z-index:70; display:none;
  background:rgba(255,253,249,.96); border-top:1px solid rgba(40,50,70,.08)}
.cookie .cookie-inner{max-width:var(--max); margin:auto; padding:12px 20px;
  display:flex; gap:10px; align-items:center; justify-content:space-between}
.cookie .btn.small{padding:8px 12px; font-size:14px}
.link{border-bottom:1px dotted rgba(40,50,70,.35)}

/* Sticky CTA floating button */
.sticky-cta{
  position:fixed; bottom:20px; right:20px; z-index:60;
  opacity:0; transform:translateY(100px) scale(0.9);
  transition:opacity 0.3s ease, transform 0.3s ease;
  pointer-events:none;
}
.sticky-cta.visible{
  opacity:1; transform:translateY(0) scale(1);
  pointer-events:auto;
}
.sticky-cta .btn{
  background:var(--brand);
  color:#120a00;
  padding:14px 24px;
  font-size:15px;
  font-weight:800;
  border-radius:999px;
  box-shadow:0 8px 24px rgba(233,168,107,.4), 0 2px 8px rgba(0,0,0,.1);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
  position:relative;
  overflow:visible;
}
.sticky-cta .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(233,168,107,.5), 0 4px 12px rgba(0,0,0,.15);
}
.sticky-cta .btn::before{
  content:"🎯";
  font-size:18px;
  line-height:1;
  display:inline-block;
  flex-shrink:0;
  position:relative;
  z-index:1;
}
@media (max-width: 640px){
  .sticky-cta{
    bottom:16px; right:16px; left:16px;
  }
  .sticky-cta .btn{
    width:100%;
    justify-content:center;
    padding:16px 20px;
    font-size:16px;
  }
}

/* ===== Trial (conversion-first) ===== */
/* ===== Trial (Split card, conversion-first) ===== */
.trial { position: relative; padding-top: 8px; padding-bottom: 10px; }
.trial::before{
  content:""; position:absolute; inset:-6% 0 -2% 0;
  background: radial-gradient(34% 46% at 50% 0%,
              rgba(233,168,107,.18), rgba(233,168,107,0) 60%);
  pointer-events:none; z-index:-1;
}
.trial .h2{ margin-top:4px; }
.trial-social{ margin-top:6px; color:#6a7786; }

/* Urgency badge */
.urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
  animation: pulse-urgency 2s ease-in-out infinite;
  letter-spacing: 0.3px;
}

@keyframes pulse-urgency {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 6px 16px rgba(238, 90, 82, 0.4); }
}

.trial-head {
  text-align: center;
}

/* Tarjeta a dos columnas */
.trial-card.split{
  max-width: 960px;
  margin: 18px auto 10px;
  border-radius: 22px;
  padding: 0;                     /* lo gestiona la grid */
  box-shadow: 0 26px 64px rgba(25,35,55,.12);
  overflow: hidden;               /* para el divisor */
}
.trial-card.split{
  display: grid;
  grid-template-columns: 1.1fr .9fr;  /* 60/40 aprox */
}

/* Columnas */
.trial-col{ padding: 24px 24px 20px; }
.trial-col--left{
  background: #fff;
}
.trial-col--right{
  background: linear-gradient(180deg, #FFF7EF 0%, #FFFFFF 70%);
  border-left: 1px solid rgba(40,50,70,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 100%;
}

/* Cabecera derecha */
.badge{
  align-self: flex-start;
  display:inline-block; padding:6px 10px; font-size:12px; line-height:1;
  background:#2F4858; color:#fff; border-radius:999px;
  box-shadow:0 6px 14px rgba(0,0,0,.10); white-space:nowrap;
}
.trial-price{
  font-size: 52px; font-weight: 900; color: var(--brand); line-height: 1;
}

/* Lista izquierda y microcopy */
.trial-list li{ font-size: 16px; }
.trial-col--left .micro{ margin-top: 10px; }

/* CTA y badges de confianza */
.trial-cta{ margin-top: 4px; font-size: 16px; padding: 14px 22px; }
.trial-trust{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start;
  margin: 6px 0 0; font-size: 13px; color:#2F4858;
}
.trial-trust span{
  background:#F5F7FB; border:1px solid rgba(40,50,70,.10);
  padding:6px 10px; border-radius:999px;
}

/* Hover estable: sin traslación que cause “flicker” */
.trial-card.split:hover{ box-shadow: 0 32px 74px rgba(25,35,55,.14); }

/* Responsive */
@media (max-width: 860px){
  .trial-card.split{
    grid-template-columns: 1fr;
  }
  .trial-col--right{
    border-left: 0;
    border-top: 1px solid rgba(40,50,70,.08);
    background: #FFF7EF;
    padding-top: 18px;
  }
  .trial-price{ font-size: 44px; }
}
@media (max-width: 560px){
  .trial-col{ padding: 20px 18px; }
  .trial-price{ font-size: 38px; }
}

/* ---------- SPANISH GAMES SECTION ---------- */
.games-promo {
  margin: 8px auto 80px !important;
  padding: 24px 20px;
}

.games-header {
  text-align: center;
  margin-bottom: 28px;
}

.games-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.games-header .h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  margin: 0 0 8px;
  color: var(--ink);
}

.games-header .muted {
  font-size: 15px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

.games-hub-cta {
  text-align: center;
  margin: 20px auto 28px;
}

.games-hub-cta .btn {
  min-width: 220px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.game-card {
  background: linear-gradient(135deg, #F5F7FB 0%, #FFFFFF 100%);
  border: 2px solid rgba(47, 72, 88, 0.12);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 8px 24px rgba(25, 35, 55, 0.06);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(25, 35, 55, 0.1);
  border-color: rgba(233, 168, 107, 0.4);
}

.game-card-icon {
  font-size: 40px;
  margin-bottom: 4px;
  display: inline-block;
}

.game-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.game-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.game-card .btn.full {
  width: 100%;
  font-size: 14px;
  padding: 10px 18px;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .games-promo {
    padding: 20px 16px;
    margin-bottom: 80px !important;
  }

  .games-icon {
    font-size: 48px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-card {
    padding: 20px 18px;
  }

  .game-card-icon {
    font-size: 36px;
  }
}

/* ---------- GAMES FOOTER (Enlaces entre juegos) ---------- */
.games-footer {
  background: linear-gradient(135deg, rgba(233, 168, 107, 0.08), rgba(47, 72, 88, 0.04));
  border: 1px solid rgba(233, 168, 107, 0.2);
  border-radius: calc(var(--radius) + 2px);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.games-footer-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.games-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.games-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--paper);
  border: 2px solid rgba(233, 168, 107, 0.3);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-2);
  transition: all 0.2s ease;
}

.games-footer-links a:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(233, 168, 107, 0.2);
  opacity: 1;
}

@media (max-width: 540px) {
  .games-footer {
    padding: 20px;
  }

  .games-footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .games-footer-links a {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- LEADERBOARD BUTTON ANIMATION ---------- */
@keyframes leaderboard-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

#save-to-leaderboard-btn {
  position: relative;
  overflow: hidden;
  animation: leaderboard-pulse 2s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.25),
    rgba(255, 215, 0, 0.15),
    rgba(255, 215, 0, 0.25)
  ) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
  color: #b8860b !important;
  font-weight: 700;
}

#save-to-leaderboard-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 3s infinite;
}

#save-to-leaderboard-btn:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.8) !important;
  animation: none;
}

