:root {
  --azul-oscuro: #03172F;
  --azul-medio: #062844;
  --azul-principal: #093657;

  --blanco: #ffffff;

  --dorado-marca: #f2d36b;

  --dorado-neon: linear-gradient(
    180deg,
    #fff2b0 0%,
    #e6b84c 40%,
    #b8891f 70%,
    #fff2b0 100%
  );
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: url("./img/fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--blanco);
}

/* =====================
   REGLAS GLOBALES
===================== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* =======================
   BARRA SUPERIOR
======================= */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 48px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0;
  box-shadow: none;
}

.top-logo {
  color: var(--azul-oscuro);
  font-weight: 700;
  text-decoration: none;
  position: fixed;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
}

.top-logo img {
  height: 120px;
  width: auto;
  display: block;
}

/* =====================
   CAROUSEL – PORTADAS FIX
===================== */
.carousel {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  background: transparent;
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* imagen completa */
  object-position: top;  /* pegada arriba */
  display: block;
  border-radius: 0;      /* sin bordes */
  box-shadow: none;      /* sin borde/sombra */
}

/* =======================
   HERO
======================= */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  background: var(--dorado-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(230,184,76,.6),
    0 0 25px rgba(184,137,31,.4);
}

.hero-subtitle {
  color: var(--blanco);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 12px;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,1.50);
}

.hero-content {
  margin-top: -20px;
}

.hero-metricas {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.metrica-card {
  position: relative;
  padding: 36px 70px;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(255,215,120,0.12),
      rgba(0,0,0,0.55)
    );
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px rgba(255,215,120,0.35),
    0 40px 120px rgba(0,0,0,0.75);
  text-align: center;
  animation: flotar 6s ease-in-out infinite;
}

.metrica-titulo {
  color: var(--blanco);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.metrica-numero {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 6px 0 10px;
}

.metrica-numero span {
  background: linear-gradient(
    90deg,
    #fff3c4,
    #ffd86b,
    #e6b84c,
    #b8891f
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 20px rgba(255,215,120,0.8),
    0 0 60px rgba(255,215,120,0.35);
}

.metrica-sub {
  color: var(--blanco);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

@keyframes flotar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* =======================
   PREMIOS
======================= */
#premios {
  padding: 120px 2rem 2rem;
}

#premios h2 {
  color: var(--dorado-marca);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.50);
}

#premios {
  padding: 120px 2rem 2rem;
}

.premios-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  grid-template-rows: 220px 260px;
  gap: 24px;

  grid-template-areas:
    "chico1 chico2 vertical"
    "horizontal horizontal vertical";
}

.premio-chico-1 { grid-area: chico1; }
.premio-chico-2 { grid-area: chico2; }
.premio-grande-horizontal { grid-area: horizontal; }
.premio-grande-vertical { grid-area: vertical; }


.premio-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.premio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0)
  );
}

.premio-card h3,
.premio-card p,
.premio-card .btn-primary {
  position: relative;
  z-index: 2;
}

.premio-card h3,
.premio-card p {
  margin-left: 16px;
  text-align: left;
}

.premio-card .btn-primary {
  display: block;
  margin: 12px auto 16px;
  width: 70%;
}

.premio-chico-1 { grid-area: chico1; }
.premio-chico-2 { grid-area: chico2; }
.premio-grande-horizontal { grid-area: horizontal; }
.premio-grande-vertical { grid-area: vertical; }

/* =======================
   BOTÓN
======================= */
.btn-primary {
  background: var(--dorado-marca);
  color: #03172F;
  border: none;
  padding: .75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(215,176,48,.4);
}

/* =======================
   MODAL
======================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 2000;
}

.modal-content {
  background: var(--azul-principal);
  max-width: 400px;
  margin: 12% auto;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
}

.close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
}

/* =======================
   PLANES
======================= */
#planes {
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.planes-title {
  color: var(--blanco);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.planes-box {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: rgba(0,0,0,0.35);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-card ul li {
  margin-bottom: .6rem;
  opacity: .9;
}

.plan-card .btn-primary {
  width: 100%;
  margin-top: auto;
}

/* =======================
   FLOATING BUTTONS
======================= */
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0px;
  z-index: 2000;
}

.float-btn {
  position: relative;
  text-decoration: none;
}

.float-btn img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

.float-btn .label {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 225, 0, 0.75);
  color: #ffe600;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.float-btn:hover .label {
  opacity: 1;
}

.float-btn:not(:first-child) {
  margin-top: -32px;
}

/* =======================
   MODAL CÓMO FUNCIONA
======================= */
.cf-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 24px;
  box-sizing: border-box;
  backdrop-filter: blur(6px);
  background: radial-gradient(
    circle at top,
    rgba(255,215,120,0.08),
    rgba(0,0,0,0.9)
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.cf-modal.activo {
  display: flex;
  opacity: 1;
}

.cf-modal-contenido {
  background: linear-gradient(
    180deg,
    #041a33 0%,
    #020c18 100%
  );
  border-radius: 26px;
  box-shadow:
    0 0 0 1px rgba(255,215,120,0.12),
    0 30px 80px rgba(0,0,0,0.8);
  padding: 48px 42px;
  max-width: 780px;
  width: 90%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  text-align: left;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: all .45s ease;
}

.cf-modal.activo .cf-modal-contenido {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.cf-modal-contenido h2 {
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  background: linear-gradient(
    90deg,
    #ffe9a3,
    #e6b84c,
    #fff3c4
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-align: left;
}

.cf-modal-intro {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 50px;
  text-align: left;
  max-width: 100%;
}

.cf-cerrar {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,215,120,0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.cf-experiencia {
  position: relative;
  margin-top: 50px;
  padding-left: 0;
}

.cf-linea {
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 0;
  transition: height 1s ease;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,215,120,0.8),
    transparent
  );
}

.cf-modal.activo .cf-linea {
  height: 100%;
}

.cf-step {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  align-items: flex-start;
  position: relative;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
  justify-content: flex-start;
}

.cf-modal.activo .cf-step {
  opacity: 1;
  transform: translateY(0);
}

.cf-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff3c4,
    #e6b84c
  );
  color: #03172F;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,215,120,0.6);
}

.cf-step h3 {
  margin-bottom: 6px;
  text-align: left;
}

.cf-step p {
  opacity: 0.85;
  max-width: 480px;
  text-align: left;
}

.cf-step.derecha {
  margin-left: 60px;
}

.cf-step > div {
  max-width: 520px;
}

.cf-step:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,215,120,0.3);
}

/* =========================
   MODAL PREMIO DEL MES
========================= */
.modal-premio {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 24px;
}

.modal-premio.activo {
  display: flex;
}

.modal-premio-contenido {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.modal-premio-contenido img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.85);
}

.modal-premio-cerrar {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,215,120,0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* =========================
   MODAL ALIADOS Y PROMOS
========================= */
.modal-aliados {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 24px;
}

.modal-aliados.activo {
  display: flex;
}

.modal-aliados-contenido {
  background: linear-gradient(180deg, #041a33, #020c18);
  border-radius: 28px;
  max-width: 1100px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
  position: relative;
}

.modal-aliados h2 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #ffe9a3, #e6b84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aliados-subtitle {
  opacity: 0.85;
  margin-bottom: 30px;
}

.modal-aliados-cerrar {
  position: sticky;
  top: 0;
  margin-left: auto;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,215,120,0.35);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.aliados-filtro {
  margin-bottom: 32px;
}

.filtro-activo {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,215,120,0.15);
  border: 1px solid rgba(255,215,120,0.4);
  font-size: 14px;
}

.aliados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.aliado-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.aliado-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.aliado-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.aliado-info {
  padding: 18px;
}

.aliado-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.aliado-info p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =========================
   HOME – CÓMO FUNCIONA
========================= */
.como-funciona {
  padding: 100px 24px;
  text-align: center;
}

.como-funciona h2 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #ffe9a3, #e6b84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pasos {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.paso {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border-radius: 22px;
  padding: 36px 26px;
  text-align: left;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 20px 40px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.paso:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 1px rgba(255,215,120,0.35),
    0 30px 60px rgba(0,0,0,0.55);
}

.paso .numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
  background: radial-gradient(circle, #fff3c4, #e6b84c);
  color: #03172F;
  box-shadow: 0 0 12px rgba(255,215,120,0.6);
}

.paso h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.paso p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* =========================
   FOOTER
========================= */
.footer-confianza {
  padding: 100px 24px 40px;
  background: radial-gradient(
    circle at top,
    rgba(255,215,120,0.08),
    rgba(2,12,24,1)
  );
  border-top: 1px solid rgba(255,215,120,0.18);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.footer-logo {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--dorado-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.footer-desc {
  opacity: 0.75;
  line-height: 1.6;
  max-width: 320px;
  text-align: left;
}

.footer-col h4 {
  color: var(--dorado-marca);
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all .2s ease;
}

.footer-col a:hover {
  color: var(--dorado-marca);
}

.footer-redes {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.footer-redes img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(242,211,107,0.55));
  transition: transform .25s ease;
}

.footer-redes img:hover {
  transform: scale(3.01);
}

.footer-bottom {
  text-align: center;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.6;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}

/* =======================
   MODAL LOGIN
======================= */
.login-modal {
  position: fixed;
  inset: 0;
  display: none;          /* 🔒 OCULTO */
  align-items: center;
  justify-content: center;
  background: rgba(3,23,47,.85);
  backdrop-filter: blur(10px);
  z-index: 4000;
}

.login-modal.active {
  display: flex;          /* 🔓 SOLO AL ABRIR */
}


.login-box {
  width: 100%;
  max-width: 420px;

  max-height: 90vh;        /* 🔥 CLAVE */
  overflow-y: auto;        /* 🔥 CLAVE */

  background: linear-gradient(180deg, #03172F, #062844);
  border-radius: 22px;
  padding: 36px 32px;

  position: relative;
pointer-events: auto; /* 🔥 EL CONTENIDO TAMBIÉN */
}

.login-box::-webkit-scrollbar {
  width: 6px;
}

.login-box::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 120, 0.5);
  border-radius: 4px;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 6px;
}

.login-subtitle {
  text-align: center;
  opacity: .85;
  margin-bottom: 30px;
}

.login-form label,
.register-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.login-form input,
.register-form input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all .25s ease;
}

.login-form input:focus,
.register-form input:focus {
  border-color: var(--dorado-marca);
  box-shadow: 0 0 0 2px rgba(242,211,107,.25);
}

.register-form input.error {
  border-color: #ff5f5f;
  box-shadow: 0 0 0 2px rgba(255,95,95,.25);
}

.register-form input.success {
  border-color: #3cff8f;
  box-shadow: 0 0 0 2px rgba(60,255,143,.25);
}

.login-form button,
.register-form button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  font-size: 1rem;
}

.login-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 6px;
}

.login-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.login-links a:hover {
  color: var(--dorado-marca);
}

.login-view {
  display: none;
}

.login-view.active {
  display: flex;
  flex-direction: column;
}

.terms-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 15px 0 25px;
  font-size: 0.85rem;
}

.terms-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.terms-check label {
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

.terms-check a {
  color: var(--dorado-marca);
  text-decoration: underline;
}

.login-google {
  margin-top: 8px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;
  width: 100%;
  max-width: 100%;

  box-sizing: border-box;
  overflow: hidden; /* CLAVE */
}

.btn-google img {
  width: 62px;
  height: 62px;
  max-width: 42px;
  max-height: 22px;

  object-fit: contain;
  display: block;
}

/* =====================================================
   MOBILE – DEFINITIVO (REEMPLAZA TODO LO ANTERIOR)
===================================================== */
@media (max-width: 768px) {

  /* ===============================
     BASE
  =============================== */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 12px;
  }

  /* ===============================
     PREMIOS – CUADRÍCULA DE 4 (2x2)
  =============================== */
  .premios,
  .premios-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .premio-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 8px !important;
    border-radius: 10px !important;
  }

  .premio-card img {
    width: 100% !important;
    height: 120px !important;
    object-fit: contain !important;
  }

  .premio-card h3 {
    font-size: 13px !important;
    text-align: center !important;
    margin: 6px 0 !important;
  }

@media (max-width: 768px) {

  /* =================================
     BOTONES FLOTANTES – FIX REAL
  ================================= */

  /* 1️⃣ Desactiva posición individual */
  .floating-buttons button,
  .acciones-flotantes button,
  .btns-flotantes button {
    position: static !important;
  }

  /* 2️⃣ El contenedor SÍ flota */
  .floating-buttons,
  .acciones-flotantes,
  .btns-flotantes {
    position: fixed !important;
    right: 12px !important;
    bottom: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 9999 !important;
  }

}

  /* ===============================
     PLANES – UNO DEBAJO DEL OTRO
  =============================== */
  .planes,
  .planes-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .plan-card {
    padding: 10px !important;
    border-radius: 10px !important;
  }

  .plan-card h4 {
    font-size: 14px !important;
  }

  .plan-card p {
    font-size: 12px !important;
  }

@media (max-width: 768px) {

  /* =================================
     BARRA LEGAL / CONFIANZA – FIX REAL
  ================================= */

  .footer-bottom,
  .footer-confianza,
  .legal-bar,
  .barra-legal {
    position: static !important;
  }

}


