:root {
  --queso-yellow: #f4c84a;
  --queso-yellow-soft: #fff6d8;
  --queso-brown: #2b2112;
  --queso-bg: #fffdf7;
  --queso-border: #f0e1b2;
  --queso-card-dark: #020617;
  --queso-card-dark-soft: #111827;
  --queso-text-light: #f9fafb;
  --queso-text-muted: #6b7280;
}

/* TIPOGRAFÍA LOCAL – PERFORMANCE */
@font-face {
  font-family: "Heady";
  src: url("../fonts/PlayfairDisplay-Black.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Heady Body";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* RESET SUAVE / BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heady Body", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size:18px;
  font-weight:300;
  background: var(--queso-bg);
  color: #111827;
  overflow-x: hidden; /* evita cortes en mobile */
}
em {
    font-size:0.9rem;
}
/* CONTENEDOR BASE */
.hero-container,
.section > .container,
footer > .container {
  width: 95vw;
  margin: 0 auto;
  padding: 1.18rem 0;
}

/* TOPBAR */
.wq-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240, 225, 178, 0.8);
}

.wq-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.wq-topbar-logo .logo-queso {
  height: 54px;
  width: auto;
  padding: 4px;
}

.wq-topbar-cta {
  font-size: 0.8rem;
  white-space: nowrap;
}

/* HERO */
.hero-alt {
  background: radial-gradient(circle at top left, #fff7d6 0, #fffdf7 40%, #ffffff 100%);
  padding-top: 2.1rem;
  padding-bottom: 2rem;
  overflow-x: hidden; /* por si las columnas generan overflow */
}

/* Ajuste columnas Bulma en mobile para que el ancho sea igual que el de las secciones */
.hero-alt .columns {
  margin-left: 0;
  margin-right: 0;
}

.hero-alt .column {
  padding-left: 0;
  padding-right: 0;
}

.hero-title-main {
  font-family: "Heady", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  max-width: 100vw; /* limita ancho para que no se vaya a 5–6 líneas */
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-secondary-link {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #4b5563;
  cursor: pointer;
}

.hero-footnote {
  font-size: 0.85rem;
  color: var(--queso-text-muted);
  max-width: 30rem;
}
.hero-body{
  padding:1.5rem;    
}

/* HERO – CARD DERECHA */
.hero-proof-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  width: 100%;
}

.hero-proof-card .testimonial {
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.avatar-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f172a;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-proof-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.proof-pill {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
}

/* TAGS + MICROCOPIA */
.tag.is-success-soft {
  background: #dcfce7;
  color: #166534;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid #bbf7d0;
}

.tag.is-queso {
  background: var(--queso-yellow);
  color: #1f2933;
  font-weight: 700;
}

.micro-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #9ca3af;
}

/* CARDS / SECCIONES */
.section {
  padding: 2.5rem 0;
}

.wq-section-light {
  background: #fff;
}

.wq-card-simple {
  background: #f9fafb;
  border-radius: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  height: 100%;
}

.predictive-section {
  background: #020617;
  color: var(--queso-text-light);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid #111827;
}

.predictive-section .title {
  color: #f9fafb;
}

.predictive-section p {
  color: #e5e7eb;
}

.predictive-section strong {
  color: #fef3c7;
}

.example-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px dashed #4b5563;
}

/* LISTAS / BULLET */
.bullet-icon {
  margin-right: 0.4rem;
}

.wq-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.section-light {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.section-dark {
  background: var(--queso-card-dark-soft);
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  color: var(--queso-text-light);
  border: 1px solid #1f2937;
}

.section-dark .bullet-icon {
  filter: grayscale(0.1) brightness(1.2);
}

.section-dark li {
  color: #e5e7eb;
}

/* PLAN CARD */
.plan-card {
  border-radius: 1.5rem;
  border: 1px solid var(--queso-border);
  background: linear-gradient(135deg, #ffffff 0%, #fff8e7 40%, #ffffff 100%);
  box-shadow: 0 20px 45px rgba(148, 115, 34, 0.25);
}

.plan-card .price {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan-card .price small {
  font-size: 0.8rem;
  font-weight: 500;
}

.plan-badge {
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

/* FAQ */
.wq-faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.wq-faq-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #fff;
  padding: 0.75rem 1rem;
}

.wq-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.wq-faq-item summary::-webkit-details-marker {
  display: none;
}

.wq-faq-item p {
  font-size: 0.85rem;
  margin-top: 0.35rem;
  color: #4b5563;
}

/* BUTTONS / HELPERS */
.button.is-queso {
  background: #111827;
  color: #f9fafb;
  border: none;
  font-size:15px;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.25rem;
  width:auto;
  height:64px;
}

.button.is-queso:hover {
  filter: brightness(1.05);
}

/* STICKY CTA MOBILE – ahora oculta al inicio */
.sticky-cta-mobile {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: rgba(15, 23, 42, 0.96);
  color: var(--queso-text-light);
  box-sizing: border-box;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.sticky-cta-mobile .label {
  font-size: 0.75rem;
  line-height: 1.3;
}

/* visible al hacer scroll */
.sticky-cta-mobile.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* FOOTER */
footer {
  padding: 2.5rem 0 3.25rem;
  font-size: 0.8rem;
  color: #6b7280;
}

footer a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* TIPOGRAFÍA GLOBAL */
.title {
  color: #020617;
}

strong {
  color: #111827;
}

/* RESPONSIVE – AJUSTES EXTRA MOBILE */
@media (max-width: 480px) {
  .hero-title-main {
    font-size: 1.7rem;
    max-width: 16ch;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero {
      max-width:100vw;
      padding:15px;
     
  }
  .hero-body{
      padding:0;
      margin:0;
  }
}

/* RESPONSIVE – DESKTOP */
@media (min-width: 769px) {
  .hero-alt {
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
  }

  .hero-title-main {
    font-size: 2.6rem;
  }

  .hero-proof-card {
    margin-left: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .predictive-section {
    padding: 2rem 2rem 1.9rem;
  }

  .section-light,
  .section-dark {
    padding: 2rem 1.8rem;
  }

  .plan-card {
    padding: 2rem 1.9rem 1.7rem;
  }
}


/* OCULTAR STICKY CTA EN ESCRITORIO */
@media (min-width: 1024px) {
  .sticky-cta-mobile {
    display: none;
  }
}

/* ACCESIBILIDAD – MENOS ANIMACIÓN SI EL USUARIO LO PIDE */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sticky-cta-mobile {
    transition: none;
  }
}