* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* INTRO */
#zenixIntro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: introExit 1s ease forwards;
  animation-delay: 1.3s;
}

.intro-logo {
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: -6px;
  transform: scale(0.45);
  opacity: 0;
  animation: introZoom 1.1s ease forwards;
}

.intro-logo span,
.nav-logo span,
.hero h3,
.football-content h2,
.top10-header h3 strong {
  color: #FFA100;
}

.intro-line {
  width: 0;
  height: 5px;
  background: #FFA100;
  margin-top: 18px;
  border-radius: 50px;
  box-shadow: 0 0 35px #FFA100;
  animation: lineLoad 1.2s ease forwards;
}

#zenixIntro p {
  opacity: 0;
  margin-top: 18px;
  letter-spacing: 2px;
  animation: fadeText .8s ease forwards;
  animation-delay: .5s;
}

#siteContent {
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.03);
  animation: contentReveal 1.2s ease forwards;
  animation-delay: 2s;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.78));
}

/* MENÚ FIJO */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 24px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
}

.nav-links a:hover {
  color: #FFA100;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 30px 30px;
  max-width: 900px;
  text-shadow: 0 0 25px rgba(0,0,0,.9);
}

.hero-content h1 {
  display: block;
}

.hero p {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 900px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0 auto 25px;
}

.hero h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin: 10px 0 35px;
}

/* BOTONES */
.btn-main,
.btn-secondary,
.video-btn,
.plan-btn {
  display: inline-block;
  background: #FFA100;
  color: #000;
  padding: 18px 48px;
  border-radius: 18px;
  border: none;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(255,161,0,.75);
  transition: .35s ease;
}

.btn-main:hover,
.btn-secondary:hover,
.video-btn:hover,
.plan-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 70px rgba(255,161,0,1);
}

/* DISPOSITIVOS */
.devices {
  background: #07111d;
  padding: 90px 30px;
  text-align: center;
}

.devices h2,
.plans h2,
.faq h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 10px;
}

.devices > p,
.plans-subtitle {
  color: #FFA100;
  font-weight: 800;
  font-size: 20px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 22px;
  max-width: 1150px;
  margin: 60px auto 0;
}

.device-card {
  background: #1b2029;
  padding: 34px 18px;
  border-radius: 28px;
  min-height: 190px;
  transition: .35s ease;
  border: 1px solid rgba(255,161,0,.18);
}

.device-card span {
  font-size: 52px;
  display: block;
  margin-bottom: 10px;
}

.device-card p {
  opacity: 0;
  max-height: 0;
  transition: .35s ease;
  color: #d6d6d6;
}

.device-card:hover {
  transform: translateY(-14px) scale(1.04);
  border-color: #FFA100;
  box-shadow: 0 0 45px rgba(255,161,0,.6);
}

.device-card:hover p {
  opacity: 1;
  max-height: 100px;
}

/* BANNER FÚTBOL */
.football-banner {
  min-height: 620px;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.32), transparent 45%),
    linear-gradient(135deg, #000, #140b00 55%, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 25px;
  position: relative;
  overflow: hidden;
}

.football-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#FFA100 1px, transparent 1px),
    linear-gradient(120deg, transparent 45%, rgba(255,161,0,.35), transparent 55%);
  background-size: 80px 80px, 100% 100%;
  opacity: .3;
  animation: particlesMove 9s linear infinite;
}

.football-content {
  position: relative;
  z-index: 2;
}

.football-content h1 {
  font-size: clamp(58px, 10vw, 145px);
  margin: 0;
  font-weight: 900;
  letter-spacing: -4px;
}

.football-content h3 {
  background: #FFA100;
  color: #000;
  display: inline-block;
  padding: 12px 35px;
  font-size: clamp(32px, 5vw, 68px);
  transform: skew(-6deg);
  margin: 15px 0;
}

/* VIDEO DEMO */
.demo-video {
  background: #000;
  text-align: center;
  padding: 90px 25px;
}

.demo-video h2 {
  font-size: clamp(32px, 5vw, 54px);
}

.demo-video p {
  color: #FFA100;
  font-size: 22px;
  font-weight: 800;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 99999;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all .4s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-box {
  width: min(900px, 90%);
  position: relative;
  transform: scale(.8);
  transition: transform .4s ease;
}

.video-modal.active .video-box {
  transform: scale(1);
}

.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-responsive iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255,161,0,.45);
}

.close-video {
  position: absolute;
  top: -48px;
  right: 0;
  background: #FFA100;
  color: #000;
  border: none;
  font-size: 30px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

body.modal-open #siteContent {
  filter: blur(12px);
}

/* PLANES */
.plans {
  background: #07111d;
  padding: 100px 25px;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.plan-card {
  background: #1b2029;
  padding: 45px 28px;
  border-radius: 34px;
  border: 2px solid transparent;
  transition: .35s ease;
  position: relative;
}
.plan-card::after {
  content: "⚡ Alta demanda";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #FFA100;
  color: #000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255,161,0,.75);
}
.plan-card:hover {
  transform: translateY(-14px) scale(1.03);
  border-color: #FFA100;
  box-shadow: 0 0 60px rgba(255,161,0,.45);
}

.plan-card.featured {
  border-color: #FFA100;
  transform: scale(1.04);
  box-shadow: 0 0 55px rgba(255,161,0,.35);
}

.badge {
  background: #FFA100;
  color: #000;
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.plan-card h3 {
  color: #FFA100;
  font-size: 34px;
}

.plan-card h4 {
  font-size: 42px;
  margin: 15px 0;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  line-height: 2.2;
  font-size: 19px;
}

.plan-btn {
  margin-top: 20px;
}

/* TRUST BAR */
.trust-bar {
  width: 100%;
  background: linear-gradient(90deg, #050505, #111827, #050505);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 35px;
  border-top: 1px solid rgba(255,161,0,.35);
  border-bottom: 1px solid rgba(255,161,0,.35);
  box-shadow: inset 0 0 45px rgba(255,161,0,.08);
}

.trust-item {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,161,0,.22);
  border-radius: 22px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  transition: .35s ease;
}

.trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #FFA100;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(255,161,0,.75);
}

.trust-item:hover {
  transform: translateY(-6px);
  border-color: #FFA100;
  box-shadow: 0 0 38px rgba(255,161,0,.35);
}

/* TOP 10 PRO MAX */
.top10 {
  background: radial-gradient(circle at top, rgba(255,161,0,.18), #000 42%);
  padding: 95px 0 90px;
  text-align: center;
  overflow: hidden;
}

.top10-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 35px;
}

.top10-header span {
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFA100, transparent);
  box-shadow: 0 0 20px #FFA100;
}

.top10-header h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: 2px;
}

.top10-header p {
  margin: 6px 0 0;
  color: #FFA100;
  font-weight: 900;
  letter-spacing: 6px;
  font-size: clamp(14px, 2vw, 28px);
}

.ranking-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0 28px;
}

.ranking-slider::before,
.ranking-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 95px;
  height: 100%;
  z-index: 8;
  pointer-events: none;
}

.ranking-slider::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.ranking-slider::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.ranking-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollRanking 42s linear infinite;
  will-change: transform;
  cursor: grab;
}

.ranking-slider:hover .ranking-track {
  animation-play-state: paused;
}

.rank-card {
  position: relative;
  width: 190px;
  min-width: 190px;
  height: 620px;
  background: #050505;
  border: 1px solid rgba(255,161,0,.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255,161,0,.15);
  transition: .35s ease;
}

.rank-card:hover {
  transform: scale(1.07) translateY(-8px);
  z-index: 10;
  box-shadow: 0 0 55px rgba(255,161,0,.75);
}

.rank-number {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFA100;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  padding: 8px 15px;
  border-radius: 0 0 8px 0;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}

.rank-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.rank-card h4 {
  min-height: 78px;
  margin: 18px 8px 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.rank-card p {
  margin: 0;
  color: #FFA100;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.rank-card p strong {
  font-size: 32px;
}

.ranking-note {
  color: #FFA100;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-top: 12px;
}

/* FAQ */
.faq {
  background: #07111d;
  padding: 100px 25px;
  text-align: center;
}

.faq-item {
  max-width: 850px;
  margin: 18px auto;
  border-bottom: 1px solid rgba(255,161,0,.25);
}

.faq-item button {
  width: 100%;
  background: none;
  color: #fff;
  border: none;
  text-align: left;
  font-size: 23px;
  font-weight: 900;
  padding: 22px;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: #FFA100;
}

.faq-item.active button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .35s ease;
  color: #c8c8c8;
  text-align: left;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #050b14;
  text-align: center;
  padding: 70px 25px;
  border-top: 2px solid #FFA100;
}

.footer h2 {
  font-size: 34px;
}

.socials,
.legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0;
}

.socials a {
  background: #FFA100;
  color: #000;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: 900;
}

.legal a {
  color: #cfcfcf;
  text-decoration: none;
}

.legal a:hover {
  color: #FFA100;
}

/* ANIMACIONES */
@keyframes introZoom {
  to { opacity: 1; transform: scale(1); }
}

@keyframes lineLoad {
  to { width: 260px; }
}

@keyframes fadeText {
  to { opacity: 1; }
}

@keyframes introExit {
  to { opacity: 0; visibility: hidden; }
}

@keyframes contentReveal {
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes scrollRanking {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes particlesMove {
  from { transform: translateY(0); }
  to { transform: translateY(-120px); }
}

/* TABLET */
@media (max-width: 1024px) {
  .device-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 18px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .nav-links {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-video video {
    object-position: center top;
  }

  .hero-content {
    padding: 110px 18px 25px;
    max-width: 100%;
  }

  .hero p {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 18px;
  }

  .hero h3 {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .btn-main,
  .btn-secondary,
  .video-btn,
  .plan-btn {
    font-size: 17px;
    padding: 14px 30px;
  }

  .devices,
  .plans,
  .faq,
  .demo-video {
    padding: 75px 18px;
  }

  .device-grid,
  .plans-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .football-banner {
    min-height: 560px;
    padding: 70px 18px;
  }

  .football-content h1 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .football-content h3 {
    font-size: clamp(28px, 8vw, 44px);
    padding: 10px 18px;
  }

  .top10 {
    padding: 70px 0;
  }

  .top10-header {
    gap: 10px;
  }

  .top10-header span {
    width: 45px;
  }

  .top10-header h3 {
    font-size: 42px;
  }

  .top10-header p {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .ranking-track {
    animation: scrollRanking 25s linear infinite;
  }

  .rank-card {
    width: 145px;
    min-width: 145px;
    height: 480px;
  }

  .rank-card img {
    height: 290px;
  }

  .rank-number {
    font-size: 24px;
    padding: 6px 11px;
  }

  .rank-card h4 {
    font-size: 16px;
    min-height: 64px;
  }

  .rank-card p {
    font-size: 14px;
  }

  .rank-card p strong {
    font-size: 24px;
  }

  .video-box {
    width: 94%;
  }

  .close-video {
    top: -52px;
  }

  .footer {
    padding: 60px 18px;
  }

  .plan-card.featured {
    transform: scale(1);
  }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 420px) {
  .nav-logo {
    font-size: 22px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero p {
    font-size: 24px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .devices h2,
  .plans h2,
  .faq h2 {
    font-size: 34px;
  }
}
/* HERO COUNTER PRO */
.hero-stats {
  animation: heroTextIn 1.2s ease both;
}

.counter {
  color: #FFA100;
  display: inline-block;
  min-width: 115px;
  text-shadow:
    0 0 18px rgba(255,161,0,.75),
    0 0 35px rgba(255,161,0,.45);
}

.hero h3 {
  animation: orangePulse 2.4s ease-in-out infinite;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(35px) scale(.96);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orangePulse {
  0%, 100% {
    text-shadow: 0 0 14px rgba(255,161,0,.35);
  }

  50% {
    text-shadow: 0 0 34px rgba(255,161,0,.95);
  }
}

@media (max-width: 768px) {
  .counter {
    min-width: 90px;
  }
}
.fake-counter {
  color: #FFA100;
  display: inline-block;
  animation: counterPop 2.8s ease forwards;
  text-shadow: 0 0 28px rgba(255,161,0,.9);
}

@keyframes counterPop {
  0% {
    opacity: 0;
    transform: scale(.65) translateY(16px);
    filter: blur(8px);
  }

  45% {
    opacity: 1;
    transform: scale(1.15) translateY(0);
    filter: blur(0);
  }

  65% {
    transform: scale(.96);
  }

  100% {
    transform: scale(1);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(55px) scale(.98);
  filter: blur(10px);
  transition: all .9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;

  background: #fff; /* fondo blanco */
  color: #FFA100; /* icono naranja */

  width: 64px;
  height: 64px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 30px;

  box-shadow:
    0 0 25px rgba(255,161,0,.5),
    0 10px 25px rgba(0,0,0,.6);

  transition: all .3s ease;

  border: 2px solid rgba(255,161,0,.4);
}

/* HOVER PRO */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #FFA100;
  color: #fff;
  box-shadow:
    0 0 45px rgba(255,161,0,.9),
    0 15px 40px rgba(0,0,0,.7);
}

@keyframes whatsappPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.09); }
  100% { transform: scale(1); }
}

/* DISPOSITIVOS PRO PREMIUM */
.devices-header {
  max-width: 1050px;
  margin: 0 auto 55px;
  text-align: center;
}

.devices-badge {
  display: inline-block;
  background: rgba(255,161,0,.12);
  color: #FFA100;
  border: 1px solid rgba(255,161,0,.45);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  box-shadow: 0 0 28px rgba(255,161,0,.18);
}

.devices-header h2 {
  font-size: clamp(42px, 6vw, 76px);
  margin: 0 0 18px;
}

.devices-header h2 strong {
  color: #FFA100;
  text-shadow: 0 0 30px rgba(255,161,0,.65);
}

.devices-header p {
  color: #d9d9d9;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.pro-devices .device-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: deviceFloat 4s ease-in-out infinite;
}

.pro-devices .device-card:nth-child(2) {
  animation-delay: .3s;
}

.pro-devices .device-card:nth-child(3) {
  animation-delay: .6s;
}

.pro-devices .device-card:nth-child(4) {
  animation-delay: .9s;
}

.pro-devices .device-card:nth-child(5) {
  animation-delay: 1.2s;
}

.pro-devices .device-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle, rgba(255,161,0,.22), transparent 45%);
  opacity: 0;
  transition: .4s ease;
}

.pro-devices .device-card:hover::before {
  opacity: 1;
}

.device-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #FFA100, #ffcf6a);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 0 35px rgba(255,161,0,.55);
  position: relative;
  z-index: 2;
}

.featured-device {
  border-color: #FFA100;
  transform: scale(1.06);
  box-shadow: 0 0 55px rgba(255,161,0,.42);
}

.featured-device .device-icon {
  font-size: 44px;
}

.pro-devices .device-card h3,
.pro-devices .device-card p {
  position: relative;
  z-index: 2;
}

.pro-devices .device-card p {
  opacity: 1;
  max-height: 120px;
  font-size: 16px;
  line-height: 1.35;
  max-width: 220px;
}

@keyframes deviceFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .devices-header p {
    font-size: 17px;
  }

  .featured-device {
    transform: scale(1);
  }

  .pro-devices .device-card {
    min-height: 220px;
  }
}
/* DISPOSITIVOS ULTRA PRO */
.devices-ultra {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,161,0,.16), transparent 34%),
    linear-gradient(180deg, #06111d 0%, #02060b 100%);
  padding: 115px 36px;
}

.devices-ultra-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,161,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,161,0,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: .5;
  animation: ultraGridMove 16s linear infinite;
}

.devices-ultra-header {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto 58px;
  text-align: center;
}

.ultra-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,161,0,.65);
  color: #FFA100;
  background: rgba(255,161,0,.08);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  box-shadow:
    inset 0 0 18px rgba(255,161,0,.12),
    0 0 32px rgba(255,161,0,.18);
}

.devices-ultra-header h2 {
  margin: 24px 0 18px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.devices-ultra-header h2 strong {
  color: #FFA100;
  text-shadow: 0 0 35px rgba(255,161,0,.75);
}

.devices-ultra-header p {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  font-weight: 600;
}

.devices-ultra-header b {
  color: #FFA100;
}

.ultra-device-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto;
}

.ultra-device-card {
  position: relative;
  min-height: 315px;
  padding: 34px 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(17,24,39,.78);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 25px 55px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  overflow: hidden;
  animation: ultraFloat 5s ease-in-out infinite;
}

.ultra-device-card:nth-child(2) { animation-delay: .35s; }
.ultra-device-card:nth-child(3) { animation-delay: .7s; }
.ultra-device-card:nth-child(4) { animation-delay: 1.05s; }
.ultra-device-card:nth-child(5) { animation-delay: 1.4s; }

.ultra-device-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.25), transparent 42%),
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.14), transparent 65%);
  opacity: 0;
  transform: translateX(-30%);
  transition: .5s ease;
}

.ultra-device-card:hover {
  transform: translateY(-16px) scale(1.045);
  border-color: rgba(255,161,0,.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 55px rgba(255,161,0,.35),
    0 30px 70px rgba(0,0,0,.55);
}

.ultra-device-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.ultra-device-icon {
  position: relative;
  z-index: 2;
  width: 105px;
  height: 105px;
  border-radius: 28px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(135deg, rgba(255,161,0,1), rgba(255,205,105,1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 38px rgba(255,161,0,.55),
    inset 0 0 25px rgba(255,255,255,.18);
}

.ultra-device-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: #050505;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ultra-device-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 25px;
  color: #fff;
  font-weight: 900;
}

.ultra-device-card p {
  position: relative;
  z-index: 2;
  max-width: 230px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.ultra-featured {
  transform: scale(1.08);
  border-color: #FFA100;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,161,0,.13), rgba(255,255,255,.035)),
    rgba(17,24,39,.9);
  box-shadow:
    0 0 70px rgba(255,161,0,.52),
    inset 0 0 35px rgba(255,161,0,.13);
}

.ultra-featured:hover {
  transform: translateY(-16px) scale(1.11);
}

.ultra-glow-ring {
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255,161,0,.55);
  box-shadow: 0 0 28px rgba(255,161,0,.55);
  animation: ultraRingPulse 2.6s ease-in-out infinite;
}

.ultra-main-icon {
  margin-bottom: 8px;
}

.ultra-number {
  position: relative;
  z-index: 2;
  color: #FFA100;
  font-size: 88px;
  line-height: .9;
  font-weight: 900;
  text-shadow: 0 0 36px rgba(255,161,0,.95);
  animation: ultraNumberPulse 2s ease-in-out infinite;
}

.ultra-proof {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 95%;
  margin: 42px auto 0;
  padding: 16px 34px;
  border: 1px solid rgba(255,161,0,.55);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.9);
  font-size: 20px;
  font-weight: 900;
  box-shadow:
    inset 0 0 24px rgba(255,161,0,.08),
    0 0 34px rgba(255,161,0,.22);
}

.ultra-proof span,
.ultra-proof strong {
  margin: 0 8px;
}

.ultra-proof strong {
  color: #FFA100;
}

@keyframes ultraFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes ultraRingPulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.025); }
}

@keyframes ultraNumberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.075); }
}

@keyframes ultraGridMove {
  from { background-position: 0 0; }
  to { background-position: 70px 70px; }
}

@media (max-width: 1200px) {
  .ultra-device-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .ultra-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .devices-ultra {
    padding: 80px 18px;
  }

  .ultra-device-grid {
    grid-template-columns: 1fr;
  }

  .ultra-featured {
    grid-column: auto;
    transform: scale(1);
  }

  .ultra-featured:hover {
    transform: translateY(-10px) scale(1.03);
  }

  .devices-ultra-header h2 {
    font-size: 42px;
  }

  .devices-ultra-header p {
    font-size: 17px;
  }

  .ultra-proof {
    border-radius: 24px;
    font-size: 16px;
    line-height: 1.8;
  }
}
/* NAVBAR APPLE PREMIUM */
.navbar {
  transform: translateY(0);
  transition: 
    transform .42s ease,
    background .35s ease,
    padding .35s ease,
    box-shadow .35s ease;
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.navbar.nav-scrolled {
  background: rgba(5, 10, 18, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 50px;
  box-shadow: 0 12px 35px rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,161,0,.22);
}

.nav-links a {
  position: relative;
  transition: color .28s ease, transform .28s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #FFA100;
  box-shadow: 0 0 14px rgba(255,161,0,.9);
  transform: translateX(-50%);
  transition: width .28s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: #FFA100;
  transform: translateY(-2px);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: #FFA100;
  color: #000 !important;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255,161,0,.55);
  font-size: 15px !important;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 40px rgba(255,161,0,.9);
}

@media (max-width: 768px) {
  .navbar.nav-scrolled {
    padding: 12px 14px;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 12px !important;
  }
}
/* FIX FINAL NAVBAR APPLE */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  transform: translateY(0) !important;
}


.navbar.nav-scrolled {
  background: rgba(5, 10, 18, .94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  padding: 14px 50px !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;
  border-bottom: 1px solid rgba(255,161,0,.22) !important;
}
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  transform: translateY(0);
  transition: transform .42s ease, background .35s ease, padding .35s ease, box-shadow .35s ease;
}

.navbar.nav-hidden {
  transform: translateY(-120%) !important;
}

.navbar.nav-scrolled {
  background: rgba(5, 10, 18, .94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  padding: 14px 50px !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;
  border-bottom: 1px solid rgba(255,161,0,.22) !important;
}
/* FIX DEFINITIVO: MENÚ SIEMPRE FIJO */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(5, 10, 18, 0.92) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;
  border-bottom: 1px solid rgba(255,161,0,.22) !important;
  transform: none !important;
}
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(5, 10, 18, .94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;
  border-bottom: 1px solid rgba(255,161,0,.22) !important;
}

/* =========================
   OPTIMIZACIÓN MÓVIL FINAL
========================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* MENÚ MÓVIL */
  .navbar {
    padding: 12px 10px !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .nav-logo {
    font-size: 26px !important;
  }

  .nav-links {
    width: 100%;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 6px 8px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 13px !important;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  /* HERO */
  .hero {
    min-height: 82vh !important;
    padding-top: 95px !important;
  }

  .hero-video video {
    object-position: center top !important;
  }

  .hero-content {
    padding: 95px 18px 20px !important;
    max-width: 100% !important;
  }

  .hero-stats {
    font-size: 25px !important;
    line-height: 1.2 !important;
  }

  .counter {
    min-width: auto !important;
    display: inline-block;
    font-size: 34px !important;
  }

  .hero h3 {
    font-size: 19px !important;
    margin: 14px 0 22px !important;
  }

  .btn-main {
    font-size: 16px !important;
    padding: 13px 26px !important;
    border-radius: 16px !important;
  }

  /* SECCIONES */
  .devices,
  .devices-ultra,
  .plans,
  .faq,
  .demo-video {
    padding: 70px 18px !important;
  }

  .devices-ultra-header h2,
  .plans h2,
  .faq h2 {
    font-size: 36px !important;
    line-height: 1.05 !important;
  }

  .devices-ultra-header p {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .ultra-device-grid,
  .plans-grid,
  .trust-bar {
    grid-template-columns: 1fr !important;
  }

  .ultra-device-card {
    min-height: 260px !important;
  }

  .ultra-featured {
    transform: scale(1) !important;
  }

  /* BANNER LIGAS */
  .football-banner {
    min-height: 500px !important;
    padding: 65px 18px !important;
  }

  .football-content h1 {
    font-size: 52px !important;
    line-height: .95 !important;
  }

  .football-content h2 {
    font-size: 34px !important;
  }

  .football-content h3 {
    font-size: 28px !important;
    padding: 10px 18px !important;
  }

  /* PLANES */
  .plan-card {
    padding: 38px 22px !important;
  }

  .plan-card.featured {
    transform: scale(1) !important;
  }

  .plan-card h3 {
    font-size: 30px !important;
  }

  .plan-card h4 {
    font-size: 38px !important;
  }

  .plan-card ul {
    font-size: 16px !important;
    line-height: 2 !important;
  }

  /* TRUST BAR */
  .trust-bar {
    padding: 22px 18px !important;
  }

  .trust-item {
    font-size: 16px !important;
    padding: 18px !important;
  }

  /* TOP 10 */
  .top10 {
    padding: 70px 0 !important;
  }

  .top10-header {
    gap: 8px !important;
    padding: 0 12px;
  }

  .top10-header span {
    width: 35px !important;
  }

  .top10-header h3 {
    font-size: 36px !important;
  }

  .top10-header p {
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }

  .ranking-track {
    animation-duration: 28s !important;
  }

  .rank-card {
    width: 145px !important;
    min-width: 145px !important;
    height: 480px !important;
  }

  .rank-card img {
    height: 290px !important;
  }

  .rank-card h4 {
    font-size: 16px !important;
    min-height: 65px !important;
  }

  .rank-card p strong {
    font-size: 23px !important;
  }

  /* FAQ */
  .faq-item button {
    font-size: 18px !important;
    padding: 20px 12px !important;
  }

  .faq-answer {
    padding: 0 12px !important;
  }

  .faq-item.active .faq-answer {
    max-height: 360px !important;
  }

  /* FOOTER */
  .footer {
    padding: 55px 18px !important;
  }

  .socials,
  .legal {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    width: 58px !important;
    height: 58px !important;
    right: 16px !important;
    bottom: 16px !important;
    font-size: 30px !important;
  }
}
/* NAVBAR MÓVIL CENTRADO PRO */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 10px;
  }

  .nav-links a {
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

}
/* FOOTBALL PRO IMPACT */
.football-pro {
  min-height: 760px;
  padding: 110px 24px;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.26), transparent 34%),
    linear-gradient(135deg, #020202, #120900 55%, #000);
  position: relative;
  overflow: hidden;
}

.football-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,161,0,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,161,0,.07) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .35;
  animation: footballGrid 18s linear infinite;
}

.football-bg-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255,161,0,.18);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.football-pro-content {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: auto;
  text-align: center;
}

.football-kicker {
  color: #FFA100;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 15px;
}

.football-pro h2 {
  margin: 18px 0;
  font-size: clamp(48px, 8vw, 130px);
  line-height: .92;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(0,0,0,.9);
}

.football-subtitle {
  max-width: 980px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,.85);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
}

.league-ticker {
  width: 100%;
  overflow: hidden;
  margin: 35px 0 55px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.league-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: leagueMove 32s linear infinite;
}

.league-track span {
  background: rgba(255,161,0,.11);
  border: 1px solid rgba(255,161,0,.45);
  color: #FFA100;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(255,161,0,.16);
}

.players-showcase {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 18px;
  max-width: 1450px;
  margin: 0 auto;
}

.player-card {
  min-height: 255px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(15, 23, 42, .82);
  border: 1px solid rgba(255,161,0,.28);
  border-radius: 28px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .4s ease;
  animation: playerFloat 4.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.player-card:nth-child(2) { animation-delay: .25s; }
.player-card:nth-child(3) { animation-delay: .5s; }
.player-card:nth-child(4) { animation-delay: .75s; }
.player-card:nth-child(5) { animation-delay: 1s; }
.player-card:nth-child(6) { animation-delay: 1.25s; }
.player-card:nth-child(7) { animation-delay: 1.5s; }

.player-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle, rgba(255,161,0,.22), transparent 45%);
  opacity: 0;
  transition: .4s ease;
}

.player-card:hover::before {
  opacity: 1;
}

.player-card:hover {
  transform: translateY(-14px) scale(1.06);
  border-color: #FFA100;
  box-shadow: 0 0 55px rgba(255,161,0,.48);
}

.player-silhouette {
  width: 96px;
  height: 126px;
  border-radius: 46px 46px 28px 28px;
  background:
    radial-gradient(circle at 50% 18%, #fff 0 13%, transparent 14%),
    linear-gradient(180deg, #FFA100 0%, #c46f00 100%);
  color: #000;
  font-size: 34px;
  font-weight: 900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  box-shadow: 0 0 38px rgba(255,161,0,.55);
  position: relative;
  z-index: 2;
}

.player-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  margin: 18px 0 6px;
  font-weight: 900;
}

.player-card p {
  position: relative;
  z-index: 2;
  color: #FFA100;
  font-size: 14px;
  margin: 0;
  font-weight: 800;
}

.featured-player {
  transform: scale(1.08);
  border-color: #FFA100;
  box-shadow: 0 0 70px rgba(255,161,0,.55);
}

.football-proof {
  width: fit-content;
  max-width: 95%;
  margin: 45px auto 0;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,161,0,.5);
  background: rgba(0,0,0,.5);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(255,161,0,.18);
}

@keyframes leagueMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes playerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes footballGrid {
  from { background-position: 0 0; }
  to { background-position: 70px 70px; }
}

@media (max-width: 1100px) {
  .players-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-player {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .football-pro {
    min-height: auto;
    padding: 85px 18px;
  }

  .football-pro h2 {
    font-size: 44px;
  }

  .football-subtitle {
    font-size: 16px;
  }

  .players-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .player-card {
    min-height: 230px;
  }

  .football-proof {
    border-radius: 24px;
    font-size: 14px;
    line-height: 1.7;
  }
}
/* FIFA TRAILER SECTION */
.football-trailer {
  position: relative;
  height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.football-trailer-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6"); center/cover no-repeat;
  transform: scale(1.08);
  animation: trailerZoom 16s ease-in-out infinite alternate;
  z-index: 1;
}

.football-trailer-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.20), transparent 45%),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.92));
}

.football-light {
  position: absolute;
  top: 18%;
  width: 360px;
  height: 90px;
  background: rgba(255,161,0,.42);
  filter: blur(45px);
  z-index: 3;
  animation: stadiumLight 3.2s ease-in-out infinite;
}

.light-left {
  left: -80px;
  transform: rotate(18deg);
}

.light-right {
  right: -80px;
  transform: rotate(-18deg);
  animation-delay: .7s;
}

.football-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image:
    radial-gradient(#FFA100 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  opacity: .35;
  animation: particlesFly 12s linear infinite;
}

.football-trailer-content {
  position: relative;
  z-index: 6;
  max-width: 1250px;
  padding: 0 20px;
  animation: trailerContentIn 1.2s ease both;
}

.football-live {
  display: inline-block;
  color: #FFA100;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 18px;
  animation: livePulse 1.2s infinite;
}

.football-trailer h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 9vw, 145px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 45px rgba(0,0,0,.95);
}

.football-brush {
  display: inline-block;
  margin: 18px 0 22px;
  padding: 14px 42px;
  background: #FFA100;
  color: #000;
  font-size: clamp(28px, 4.8vw, 70px);
  font-weight: 900;
  font-style: italic;
  transform: skew(-7deg);
  box-shadow: 0 0 55px rgba(255,161,0,.8);
}

.league-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px auto;
}

.league-logos span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,161,0,.45);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 0 18px rgba(255,161,0,.18);
}

.football-trailer p {
  max-width: 820px;
  margin: 22px auto;
  color: rgba(255,255,255,.92);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
}

.football-final {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(36px, 6vw, 82px);
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 0 35px rgba(0,0,0,.9);
}

.football-final strong {
  color: #FFA100;
  text-shadow: 0 0 45px rgba(255,161,0,.9);
}

@keyframes trailerZoom {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.14) translateY(-12px); }
}

@keyframes stadiumLight {
  0%, 100% { opacity: .35; transform: translateX(0) rotate(18deg); }
  50% { opacity: 1; transform: translateX(35px) rotate(18deg); }
}

@keyframes particlesFly {
  from { background-position: 0 0, 0 0; }
  to { background-position: 220px -220px, -160px -260px; }
}

@keyframes trailerContentIn {
  from {
    opacity: 0;
    transform: translateY(45px) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

@media (max-width: 768px) {
  .football-trailer {
    height: 660px;
  }

  .football-trailer h2 {
    font-size: 48px;
  }

  .football-brush {
    font-size: 26px;
    padding: 11px 22px;
  }

  .football-final {
    font-size: 42px;
  }

  .league-logos span {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* FIX FIFA TRAILER - ZENIX */
.football-trailer {
  position: relative !important;
  min-height: 760px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: #000 !important;
}

.football-trailer-bg {
  position: absolute !important;
  inset: 0 !important;
  background-image: url("./football-hero.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transform: scale(1.06);
  animation: trailerZoom 16s ease-in-out infinite alternate;
}

.football-trailer-dark {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.18), transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.88)) !important;
}

.football-trailer-content {
  position: relative !important;
  z-index: 5 !important;
  padding: 30px 18px !important;
  max-width: 1200px !important;
}

.football-live {
  display: inline-block !important;
  color: #FFA100 !important;
  font-weight: 900 !important;
  letter-spacing: 3px !important;
  margin-bottom: 18px !important;
}

.football-trailer h2 {
  color: #fff !important;
  font-size: clamp(48px, 8vw, 130px) !important;
  line-height: .9 !important;
  margin: 0 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 45px rgba(0,0,0,.95) !important;
}

.football-brush {
  display: inline-block !important;
  margin: 18px 0 22px !important;
  padding: 14px 38px !important;
  background: #FFA100 !important;
  color: #000 !important;
  font-size: clamp(26px, 4vw, 58px) !important;
  font-weight: 900 !important;
  transform: skew(-7deg) !important;
  box-shadow: 0 0 45px rgba(255,161,0,.75) !important;
}

.league-logos {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 24px auto !important;
}

.league-logos span {
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.58) !important;
  border: 1px solid rgba(255,161,0,.45) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

.football-trailer p {
  color: #fff !important;
  font-size: clamp(17px, 2vw, 24px) !important;
  font-weight: 700 !important;
  max-width: 820px !important;
  margin: 22px auto !important;
}

.football-final {
  color: #fff !important;
  font-size: clamp(34px, 5vw, 76px) !important;
  font-weight: 900 !important;
  font-style: italic !important;
}

.football-final strong {
  color: #FFA100 !important;
  text-shadow: 0 0 45px rgba(255,161,0,.9) !important;
}

@keyframes trailerZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@media (max-width: 768px) {
  .football-trailer {
    min-height: 620px !important;
  }

  .football-trailer h2 {
    font-size: 42px !important;
  }

  .football-brush {
    font-size: 24px !important;
    padding: 11px 20px !important;
  }
}
/* FIX FINAL FIFA TRAILER */
.football-trailer,
.football-trailer.reveal {
  position: relative !important;
  min-height: 760px !important;
  height: auto !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: #000 !important;

  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.football-trailer-bg {
  position: absolute !important;
  inset: 0 !important;
  background: url("football-hero.jpg") center center / cover no-repeat !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transform: scale(1.06);
  animation: trailerZoom 16s ease-in-out infinite alternate;
}

.football-trailer-dark {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    radial-gradient(circle at center, rgba(255,161,0,.18), transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.88)) !important;
}

.football-light,
.football-particles {
  z-index: 3 !important;
}

.football-trailer-content {
  position: relative !important;
  z-index: 10 !important;
  max-width: 1200px !important;
  padding: 40px 18px !important;
  color: #fff !important;
}

.football-live {
  display: inline-block !important;
  color: #FFA100 !important;
  font-weight: 900 !important;
  letter-spacing: 3px !important;
  margin-bottom: 18px !important;
}

.football-trailer h2 {
  color: #fff !important;
  font-size: clamp(48px, 8vw, 130px) !important;
  line-height: .9 !important;
  margin: 0 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 45px rgba(0,0,0,.95) !important;
}

.football-brush {
  display: inline-block !important;
  margin: 18px 0 22px !important;
  padding: 14px 38px !important;
  background: #FFA100 !important;
  color: #000 !important;
  font-size: clamp(26px, 4vw, 58px) !important;
  font-weight: 900 !important;
  transform: skew(-7deg) !important;
  box-shadow: 0 0 45px rgba(255,161,0,.75) !important;
}

.league-logos {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 24px auto !important;
}

.league-logos span {
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.58) !important;
  border: 1px solid rgba(255,161,0,.45) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

.football-trailer p {
  color: #fff !important;
  font-size: clamp(17px, 2vw, 24px) !important;
  font-weight: 700 !important;
  max-width: 820px !important;
  margin: 22px auto !important;
}

.football-final {
  color: #fff !important;
  font-size: clamp(34px, 5vw, 76px) !important;
  font-weight: 900 !important;
  font-style: italic !important;
}

.football-final strong {
  color: #FFA100 !important;
  text-shadow: 0 0 45px rgba(255,161,0,.9) !important;
}

@keyframes trailerZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@media (max-width: 768px) {
  .football-trailer,
  .football-trailer.reveal {
    min-height: 620px !important;
  }

  .football-trailer h2 {
    font-size: 42px !important;
  }

  .football-brush {
    font-size: 24px !important;
    padding: 11px 20px !important;
  }
}
/* FOTO FÚTBOL ZENIX - SOLO IMAGEN + BOTÓN */
.football-photo-section {
  background: #000;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.football-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.football-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* BOTÓN SOBRE LA FOTO */
.football-live-btn {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  background: #FFA100;
  color: #000;
  padding: 18px 44px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 45px rgba(255,161,0,.85);
  z-index: 5;
  transition: .35s ease;
  white-space: nowrap;
}

.football-live-btn:hover {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 75px rgba(255,161,0,1);
}

/* MÓVIL */
@media (max-width: 768px) {
  .football-photo-section {
    padding: 0;
  }

  .football-photo-wrap img {
    width: 100%;
    height: auto;
  }

  .football-live-btn {
    bottom: 5%;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 14px;
  }
}
/* FOTO FÚTBOL ZENIX - FIX FINAL */
.football-photo-section,
.football-photo-section.reveal {
  background: #000 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.football-photo-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 1920px !important;
  margin: 0 auto !important;
  background: #000 !important;
}

.football-photo-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.football-live-btn {
  position: absolute !important;
  left: 50% !important;
  bottom: 7% !important;
  transform: translateX(-50%) !important;
  background: #FFA100 !important;
  color: #000 !important;
  padding: 18px 44px !important;
  border-radius: 18px !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 0 45px rgba(255,161,0,.85) !important;
  z-index: 5 !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .football-live-btn {
    bottom: 5% !important;
    font-size: 15px !important;
    padding: 12px 24px !important;
  }
}
/* ==============================
   FOTO FÚTBOL ZENIX PRO FINAL
   Imagen fija + efectos en código
============================== */

.football-photo-section,
.football-photo-section.reveal {
  position: relative !important;
  background: #000 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.football-photo-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 1920px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  background: #000 !important;
}

/* IMAGEN CON MOVIMIENTO CINEMÁTICO */
.football-photo-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  transform: scale(1.01) !important;
  animation: footballImageZoom 14s ease-in-out infinite alternate !important;
}

/* CAPA DE LUZ CINEMÁTICA */
.football-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,161,0,.20), transparent 38%),
    linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.38));
}

/* BRILLO MOVIÉNDOSE SOBRE LA FOTO */
.football-photo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.16),
    rgba(255,161,0,.22),
    transparent
  );
  filter: blur(12px);
  animation: footballLightSweep 5.5s ease-in-out infinite;
}

/* BOTÓN SOBRE FOTO */
.football-live-btn {
  position: absolute !important;
  left: 50% !important;
  bottom: 7% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;

  background: #FFA100 !important;
  color: #000 !important;
  padding: 18px 44px !important;
  border-radius: 18px !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  box-shadow:
    0 0 35px rgba(255,161,0,.75),
    0 0 80px rgba(255,161,0,.35) !important;

  animation: footballBtnPulse 1.8s ease-in-out infinite !important;
  transition: .35s ease !important;
}

.football-live-btn:hover {
  transform: translateX(-50%) scale(1.08) !important;
  box-shadow:
    0 0 50px rgba(255,161,0,1),
    0 0 100px rgba(255,161,0,.75) !important;
}

/* ANIMACIONES */
@keyframes footballImageZoom {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.055);
  }
}

@keyframes footballLightSweep {
  0% {
    left: -40%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  55% {
    left: 110%;
    opacity: .8;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes footballBtnPulse {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(255,161,0,.65),
      0 0 70px rgba(255,161,0,.30);
  }
  50% {
    box-shadow:
      0 0 50px rgba(255,161,0,1),
      0 0 110px rgba(255,161,0,.65);
  }
}

/* MÓVIL */
@media (max-width: 768px) {
  .football-photo-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    animation: footballImageZoomMobile 12s ease-in-out infinite alternate !important;
  }

  .football-live-btn {
    bottom: 5% !important;
    font-size: 14px !important;
    padding: 12px 22px !important;
    border-radius: 14px !important;
  }

  .football-photo-wrap::after {
    width: 55%;
    animation-duration: 6.5s;
  }
}

@keyframes footballImageZoomMobile {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}
/* FOTO FÚTBOL ZENIX AJUSTADA + EFECTOS */
.football-photo-section,
.football-photo-section.reveal {
  background: #000 !important;
  padding: 55px 20px !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.football-photo-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 1180px !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #000 !important;
  box-shadow:
    0 0 45px rgba(255,161,0,.28),
    0 25px 80px rgba(0,0,0,.75) !important;
}

.football-photo-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  animation: footballImageZoom 14s ease-in-out infinite alternate !important;
}

.football-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,161,0,.18), transparent 42%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,.38));
}

.football-photo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 42%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.14),
    rgba(255,161,0,.22),
    transparent
  );
  filter: blur(12px);
  animation: footballLightSweep 6s ease-in-out infinite;
}

@keyframes footballImageZoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes footballLightSweep {
  0% { left: -45%; opacity: 0; }
  20% { opacity: 1; }
  58% { left: 115%; opacity: .85; }
  100% { left: 125%; opacity: 0; }
}

@media (max-width: 768px) {
  .football-photo-section,
  .football-photo-section.reveal {
    padding: 38px 12px !important;
  }

  .football-photo-wrap {
    max-width: 100% !important;
    border-radius: 18px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .football-photo-img {
    object-fit: contain !important;
    animation: footballImageZoomMobile 12s ease-in-out infinite alternate !important;
  }
}

@keyframes footballImageZoomMobile {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}
/* GALERÍA DEPORTIVA PREMIUM */
.sports-gallery {
  background:
    radial-gradient(circle at top, rgba(255,161,0,.16), transparent 35%),
    linear-gradient(180deg, #020202, #07111d);
  padding: 95px 0 105px;
  overflow: hidden;
  text-align: center;
}

.sports-gallery-header {
  max-width: 950px;
  margin: 0 auto 45px;
  padding: 0 20px;
}

.sports-gallery-header span {
  color: #FFA100;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 14px;
}

.sports-gallery-header h2 {
  font-size: clamp(38px, 6vw, 82px);
  margin: 14px 0;
  font-weight: 900;
  line-height: 1;
}

.sports-gallery-header p {
  color: rgba(255,255,255,.75);
  font-size: 20px;
  font-weight: 700;
}

.sports-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 25px 0;
}

.sports-slider::before,
.sports-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.sports-slider::before {
  left: 0;
  background: linear-gradient(to right, #020202, transparent);
}

.sports-slider::after {
  right: 0;
  background: linear-gradient(to left, #020202, transparent);
}

.sports-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: sportsMove 60s linear infinite;
}

.sports-slider:hover .sports-track {
  animation-play-state: paused;
}

.league-card {
  position: relative;
  width: 260px;
  min-width: 260px;
  height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,161,0,.28);
  box-shadow: 0 0 35px rgba(255,161,0,.16);
  transition: .4s ease;
}

.league-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: .5s ease;
}

.league-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.95), transparent 55%),
    radial-gradient(circle at center, rgba(255,161,0,.12), transparent 45%);
  z-index: 2;
}

.league-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px 18px;
  text-align: left;
}

.league-info h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.league-info p {
  margin: 6px 0 0;
  color: #FFA100;
  font-size: 15px;
  font-weight: 900;
}

.league-card:hover {
  transform: translateY(-14px) scale(1.06);
  border-color: #FFA100;
  box-shadow: 0 0 65px rgba(255,161,0,.65);
  z-index: 10;
}

.league-card:hover img {
  transform: scale(1.12);
}

@keyframes sportsMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sports-gallery {
    padding: 70px 0 80px;
  }

  .sports-gallery-header h2 {
    font-size: 36px;
  }

  .sports-gallery-header p {
    font-size: 16px;
  }

  .sports-track {
  min-width: 200%;
  }
    animation-duration: 30s;
  }

  .league-card {
    width: 190px;
    min-width: 190px;
    height: 295px;
    border-radius: 20px;
  }

  .league-info h3 {
    font-size: 19px;
  }

  .league-info p {
    font-size: 13px;
  }

  .sports-slider::before,
  .sports-slider::after {
    width: 45px;
  }
}
/* =========================
   FIX FINAL CSS ZENIX
========================= */

/* NAVBAR FIJA */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(5, 10, 18, .94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,.55) !important;
  border-bottom: 1px solid rgba(255,161,0,.22) !important;
}

/* FOTO FÚTBOL AJUSTADA */
.football-photo-section,
.football-photo-section.reveal {
  background: #000 !important;
  padding: 55px 20px !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.football-photo-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: 1180px !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #000 !important;
  box-shadow: 0 0 45px rgba(255,161,0,.28), 0 25px 80px rgba(0,0,0,.75) !important;
}

.football-photo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  animation: footballImageZoom 14s ease-in-out infinite alternate !important;
}

.football-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,161,0,.18), transparent 42%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,.38));
}

.football-photo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 42%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), rgba(255,161,0,.22), transparent);
  filter: blur(12px);
  animation: footballLightSweep 6s ease-in-out infinite;
}

@keyframes footballImageZoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes footballLightSweep {
  0% { left: -45%; opacity: 0; }
  20% { opacity: 1; }
  58% { left: 115%; opacity: .85; }
  100% { left: 125%; opacity: 0; }
}

/* GALERÍA DEPORTIVA PRO */
.sports-gallery,
.sports-gallery.reveal {
  background:
    radial-gradient(circle at top, rgba(255,161,0,.16), transparent 35%),
    linear-gradient(180deg, #020202, #07111d);
  padding: 95px 0 105px !important;
  overflow: hidden !important;
  text-align: center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.sports-gallery-header {
  max-width: 950px;
  margin: 0 auto 45px;
  padding: 0 20px;
}

.sports-gallery-header span {
  color: #FFA100;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 14px;
}

.sports-gallery-header h2 {
  color: #fff;
  font-size: clamp(38px, 6vw, 82px);
  margin: 14px 0;
  font-weight: 900;
  line-height: 1;
}

.sports-gallery-header p {
  color: rgba(255,255,255,.75);
  font-size: 20px;
  font-weight: 700;
}

.sports-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 25px 0;
}

.sports-slider::before,
.sports-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.sports-slider::before {
  left: 0;
  background: linear-gradient(to right, #020202, transparent);
}

.sports-slider::after {
  right: 0;
  background: linear-gradient(to left, #020202, transparent);
}

.sports-track {
  display: flex !important;
  gap: 22px !important;
  width: max-content !important;
  min-width: 200% !important;
  animation: sportsMove 60s linear infinite !important;
}

.sports-slider:hover .sports-track {
  animation-play-state: paused !important;
}

.league-card {
  position: relative;
  width: 260px;
  min-width: 260px;
  height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,161,0,.28);
  box-shadow: 0 0 35px rgba(255,161,0,.16);
  transition: .4s ease;
}

.league-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111827;
}

.league-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.95), transparent 55%),
    radial-gradient(circle at center, rgba(255,161,0,.12), transparent 45%);
  z-index: 2;
}

.league-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px 18px;
  text-align: left;
}

.league-info h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.league-info p {
  margin: 6px 0 0;
  color: #FFA100;
  font-size: 15px;
  font-weight: 900;
}

.league-card:hover {
  transform: translateY(-14px) scale(1.06);
  border-color: #FFA100;
  box-shadow: 0 0 65px rgba(255,161,0,.65);
  z-index: 10;
}

@keyframes sportsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MÓVIL */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 10px !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .nav-logo {
    font-size: 26px !important;
  }

  .nav-links {
    width: 100%;
    justify-content: center !important;
    gap: 16px !important;
    overflow-x: auto;
    padding: 6px 10px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 14px !important;
    white-space: nowrap;
  }

  .football-photo-section,
  .football-photo-section.reveal {
    padding: 38px 12px !important;
  }

  .football-photo-wrap {
    max-width: 100% !important;
    border-radius: 18px !important;
  }

  .football-photo-img {
    animation: footballImageZoomMobile 12s ease-in-out infinite alternate !important;
  }

  .sports-gallery {
    padding: 70px 0 80px !important;
  }

  .sports-gallery-header h2 {
    font-size: 36px !important;
  }

  .sports-gallery-header p {
    font-size: 16px !important;
  }

  .sports-track {
    gap: 14px !important;
    animation-duration: 34s !important;
  }

  .league-card {
    width: 190px !important;
    min-width: 190px !important;
    height: 295px !important;
    border-radius: 20px !important;
  }

  .league-info h3 {
    font-size: 19px !important;
  }

  .league-info p {
    font-size: 13px !important;
  }

  .sports-slider::before,
  .sports-slider::after {
    width: 45px !important;
  }
}

@keyframes footballImageZoomMobile {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
      }

/* =========================
   MUNDIAL 2026 ZENIX FINAL LIMPIO
========================= */

.worldcup-banner,
.worldcup-banner.reveal {
  position: relative !important;
  width: 100% !important;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,161,0,.18), transparent 32%),
    radial-gradient(circle at 80% 25%, rgba(255,161,0,.16), transparent 32%),
    linear-gradient(180deg, #030303 0%, #000 100%) !important;
  padding: 90px 18px 100px !important;
  text-align: center !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.worldcup-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(#FFA100 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  opacity: .22;
  animation: mundialParticles 14s linear infinite;
}

.worldcup-top {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto 38px !important;
  text-align: center !important;
}

.worldcup-top h2 {
  color: #FFA100 !important;
  font-size: clamp(26px, 4vw, 54px) !important;
  letter-spacing: 6px !important;
  margin: 0 0 14px !important;
  font-weight: 900 !important;
  text-align: center !important;
}

.worldcup-top h1 {
  color: #fff !important;
  font-size: clamp(50px, 8vw, 125px) !important;
  line-height: .95 !important;
  margin: 0 !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 38px rgba(255,161,0,.35);
}

.worldcup-image-wrap {
  position: relative !important;
  z-index: 4 !important;
  width: min(1120px, 94%) !important;
  margin: 0 auto !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #000 !important;
  box-shadow:
    0 0 55px rgba(255,161,0,.38),
    0 25px 80px rgba(0,0,0,.85) !important;
}

.worldcup-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  animation: mundialZoom 14s ease-in-out infinite alternate !important;
}

.worldcup-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 35%, rgba(255,161,0,.25), transparent 34%),
    radial-gradient(circle at 80% 35%, rgba(255,161,0,.22), transparent 34%),
    linear-gradient(to bottom, rgba(0,0,0,.02), rgba(0,0,0,.32));
}

.worldcup-image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 42%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.16),
    rgba(255,161,0,.35),
    transparent
  );
  filter: blur(12px);
  animation: mundialLight 6s ease-in-out infinite;
}

@keyframes mundialZoom {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@keyframes mundialLight {
  0% { left: -45%; opacity: 0; }
  20% { opacity: 1; }
  60% { left: 115%; opacity: .9; }
  100% { left: 125%; opacity: 0; }
}

@keyframes mundialParticles {
  from { background-position: 0 0, 0 0; }
  to { background-position: 220px -220px, -180px -260px; }
}

@media (max-width: 768px) {
  .worldcup-banner,
  .worldcup-banner.reveal {
    padding: 68px 12px 78px !important;
  }

  .worldcup-top {
    margin-bottom: 26px !important;
  }

  .worldcup-top h2 {
    font-size: 23px !important;
    letter-spacing: 4px !important;
  }

  .worldcup-top h1 {
    font-size: 46px !important;
  }

  .worldcup-image-wrap {
    width: 100% !important;
    height: auto !important;
    border-radius: 18px !important;
  }

  .worldcup-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* ===== HERO TITLES PRO ===== */
.hero-title {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  margin: 0;
  text-transform: uppercase;

  background: linear-gradient(180deg, #fff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 25px rgba(0,0,0,.9),
    0 0 60px rgba(0,0,0,.6);

  animation: titleImpact 1.2s ease both;
}

.hero-title span {
  display: block;
  color: #FFA100;
  -webkit-text-fill-color: #FFA100;

  text-shadow:
    0 0 20px rgba(255,161,0,.8),
    0 0 45px rgba(255,161,0,.4);

  animation: glowPulse 2.5s ease-in-out infinite;
}

.hero-sub {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,.85);
  font-weight: 700;
  letter-spacing: .5px;

  animation: fadeUp 1.5s ease both;
}

/* ANIMACIONES */
@keyframes titleImpact {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes glowPulse {
  0%,100% {
    text-shadow: 0 0 20px rgba(255,161,0,.6);
  }
  50% {
    text-shadow: 0 0 45px rgba(255,161,0,1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FIX CENTRADO HERO */
.hero-content {
  text-align: center !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* FIX DEFINITIVO TITULO LIGAS CENTRADO */
.sports-gallery-header {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto 45px !important;
  padding: 0 20px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.sports-gallery-header span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  color: #FFA100 !important;
  font-size: 15px !important;
  letter-spacing: 6px !important;
  font-weight: 900 !important;
  margin-bottom: 18px !important;
}

.sports-gallery-header h2 {
  width: 100% !important;
  max-width: 950px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  font-size: clamp(44px, 6vw, 90px) !important;
  line-height: .95 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow:
    0 0 25px rgba(0,0,0,.95),
    0 0 45px rgba(255,161,0,.35) !important;
}

.sports-gallery-header p {
  width: 100% !important;
  max-width: 850px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: clamp(17px, 2vw, 24px) !important;
  color: rgba(255,255,255,.82) !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .sports-gallery-header h2 {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .sports-gallery-header span {
    font-size: 12px !important;
    letter-spacing: 4px !important;
  }

  .sports-gallery-header p {
    font-size: 15px !important;
    padding: 0 10px !important;
  }
}
/* FIX REAL CENTRADO LIGAS */
.sports-gallery-header {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

.sports-gallery-header h2 {
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
}

.sports-gallery-header p {
  width: 100% !important;
  text-align: center !important;
}
/* =========================
   LIGAS ZENIX PRO LIMPIO
========================= */

.sports-gallery,
.sports-gallery.reveal {
  position: relative !important;
  background:
    radial-gradient(circle at top, rgba(255,161,0,.18), transparent 36%),
    linear-gradient(180deg, #020202 0%, #07111d 100%) !important;
  padding: 95px 0 105px !important;
  overflow: hidden !important;
  text-align: center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.sports-gallery-header {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto 48px !important;
  padding: 0 22px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.sports-gallery-header span {
  color: #FFA100 !important;
  font-weight: 900 !important;
  letter-spacing: 5px !important;
  font-size: 15px !important;
  margin-bottom: 16px !important;
  text-shadow: 0 0 22px rgba(255,161,0,.8);
}

.sports-gallery-header h2 {
  width: 100% !important;
  max-width: 1050px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  font-size: clamp(42px, 7vw, 96px) !important;
  line-height: .92 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -2px !important;
  color: #fff !important;
  text-shadow:
    0 0 30px rgba(0,0,0,.9),
    0 0 42px rgba(255,161,0,.28);
}

.sports-gallery-header h2::after {
  content: "";
  display: block;
  width: min(420px, 70%);
  height: 5px;
  margin: 24px auto 0;
  border-radius: 50px;
  background: linear-gradient(90deg, transparent, #FFA100, transparent);
  box-shadow: 0 0 28px rgba(255,161,0,.9);
}

.sports-gallery-header p {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(17px, 2vw, 23px) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.sports-slider {
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  padding: 28px 0 !important;
}

.sports-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: sportsMove 58s linear infinite !important;
}

.sports-slider:hover .sports-track {
  animation-play-state: paused !important;
}

.league-card {
  position: relative !important;
  width: 270px !important;
  min-width: 270px !important;
  height: 400px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #111827 !important;
  border: 1px solid rgba(255,161,0,.32) !important;
  box-shadow: 0 0 34px rgba(255,161,0,.16) !important;
  transition: .4s ease !important;
}

.league-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: .5s ease !important;
}

.league-card:hover {
  transform: translateY(-14px) scale(1.055) !important;
  border-color: #FFA100 !important;
  box-shadow: 0 0 65px rgba(255,161,0,.65) !important;
  z-index: 10 !important;
}

.league-card:hover img {
  transform: scale(1.12) !important;
}

.league-info {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 3 !important;
  padding: 26px 20px !important;
  text-align: left !important;
}

.league-info h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 900 !important;
}

.league-info p {
  margin: 6px 0 0 !important;
  color: #FFA100 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

@media (max-width: 768px) {
  .sports-gallery,
  .sports-gallery.reveal {
    padding: 75px 0 85px !important;
  }

  .sports-gallery-header h2 {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }

  .sports-gallery-header p {
    font-size: 16px !important;
  }

  .sports-track {
    gap: 15px !important;
    animation-duration: 34s !important;
  }

  .league-card {
    width: 195px !important;
    min-width: 195px !important;
    height: 305px !important;
    border-radius: 20px !important;
  }

  .league-info h3 {
    font-size: 19px !important;
  }

  .league-info p {
    font-size: 13px !important;
  }
}
/* FIX REAL CENTRADO TÍTULO LIGAS */
.sports-gallery-header,
.sports-gallery-header * {
  text-align: center !important;
}

.sports-gallery-header {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.sports-gallery-header h2,
.sports-gallery-header .hero-title {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  display: block !important;
  transform: none !important;
}

.sports-gallery-header h2 span,
.sports-gallery-header .hero-title span {
  display: block !important;
  text-align: center !important;
}

.sports-gallery-header p,
.sports-gallery-header .hero-sub {
  width: 100% !important;
  max-width: 780px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
/* FIX CENTRADO REAL LIGAS */
.ligas-header {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.ligas-header .hero-title {
  text-align: center;
  margin: 0 auto;
}

.ligas-header .hero-title span {
  display: block;
  text-align: center;
}

.ligas-header .hero-sub {
  text-align: center;
  margin-top: 18px;
}
/* CONTROL TÁCTIL / CLICK GALERÍAS */
.draggable-slider {
  cursor: grab;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.draggable-slider::-webkit-scrollbar {
  display: none;
}

.draggable-slider.dragging {
  cursor: grabbing;
}

.draggable-slider.dragging .sports-track,
.draggable-slider.dragging .ranking-track {
  animation-play-state: paused !important;
}
/* INTRO PATAN */
#patanIntro{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  text-align:center;
}

.intro-dog video{
  width:220px;
  max-width:80%;
  border-radius:12px;
}

.intro-logo{
  font-size:clamp(46px, 10vw, 86px);
  font-weight:900;
  letter-spacing:2px;
  margin-top:8px;
  max-width:92vw;
  line-height:.95;
  white-space:nowrap;
}

.intro-logo span{
  color:#FFA100;
}

.intro-line{
  width:120px;
  height:4px;
  background:#FFA100;
  margin:20px 0;
  animation:lineGrow 1s ease;
}

.intro-slogan{
  margin-top:14px;
  font-size:clamp(16px, 3.4vw, 22px);
  font-weight:800;
  color:#fff;
  opacity:0;
  letter-spacing:1.5px;
  text-align:center;
  max-width:82vw;
  line-height:1.25;
  animation:fadeText .9s ease forwards;
  animation-delay:.45s;
}

/* Animaciones */
@keyframes popIn{
  from{transform:scale(0.5); opacity:0;}
  to{transform:scale(1); opacity:1;}
}

@keyframes lineGrow{
  from{width:0;}
  to{width:120px;}
}
/* INTRO PATAN */
#patanIntro{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:9999;
  text-align:center;
}

.intro-logo{
  font-size:90px;
  font-weight:900;
  letter-spacing:5px;
  margin-top:10px;
}

.intro-logo span{
  color:#FFA100;
  text-shadow:
    0 0 10px rgba(255,161,0,0.6),
    0 0 25px rgba(255,161,0,1),
    0 0 50px rgba(255,161,0,1);
}

.intro-line{
  width:120px;
  height:4px;
  background:#FFA100;
  margin:20px 0;
  animation:lineGrow 1s ease;
}

.intro-slogan{
  margin-top:8px;
  font-size:18px;
  font-weight:600;
  opacity:0.85;
  letter-spacing:1px;
  text-align:center;
}

.intro-dog video{
  width:130px !important;
  height:auto;
  max-width:130px;
  border-radius:12px;
  box-shadow:0 0 20px rgba(255,161,0,0.3);
  margin-bottom:8px;
  display:block;
}

/* Animaciones */
@keyframes popIn{
  from{transform:scale(0.5); opacity:0;}
  to{transform:scale(1); opacity:1;}
}

@keyframes lineGrow{
  from{width:0;}
  to{width:120px;}
}
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
#patanIntro .intro-dog{
  width:auto !important;
  display:flex;
  justify-content:center;
}

#patanIntro .intro-dog video{
  width:120px !important;
  max-width:120px !important;
  min-width:120px;
  height:auto !important;
}
#patanIntro video{
  width:120px !important;
}
/* LOGO HEADER PATAN TV */
.logo img{
  height:70px;
  width:auto;
  object-fit:contain;
}
/* HEADER */
.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:70px;
  width:auto;
  object-fit:contain;
}

/* PERRITO APOYADO EN PLANES */
.plan-card{
  position:relative !important;
  overflow:visible !important;
}

.plan-dog{
  position:absolute !important;
  top:-44px !important;
  left:-18px !important;
  width:78px !important;
  z-index:20 !important;
  pointer-events:none !important;
  filter:drop-shadow(0 0 12px rgba(255,161,0,.55));
}

.plan-card.featured .plan-dog{
  top:-48px !important;
  left:-16px !important;
  width:82px !important;
}

/* MÓVIL */
@media (max-width:768px){
  .plan-dog{
    top:-44px !important;
    left:-12px !important;
    width:72px !important;
  }

  .plan-card.featured .plan-dog{
    top:-48px !important;
    left:-12px !important;
    width:76px !important;
  }
}

/* INTRO MÓVIL */
@media (max-width:480px){
  .intro-logo{
    font-size:44px;
    letter-spacing:1px;
  }

  .intro-slogan{
    font-size:15px;
    max-width:260px;
  }

  #patanIntro .intro-dog video{
    width:115px !important;
    max-width:115px !important;
  }
}
body{
  overflow:hidden;
}

#patanIntro{
  z-index:9999999 !important;
}
/* NAVBAR PATAN MÁS DELGADA */
.navbar{
  padding:10px 42px !important;
  min-height:72px !important;
}

.logo img{
  height:48px !important;
}

.nav-links{
  gap:34px !important;
}

.nav-links a{
  font-size:22px !important;
}

/* MÓVIL */
@media (max-width:768px){
  .navbar{
    padding:8px 10px !important;
    min-height:auto !important;
  }

  .logo img{
    height:58px !important;
  }

  .nav-links a{
    font-size:17px !important;
  }
}
/* ANIMACIÓN NAVBAR */
.navbar{
  transition:transform .35s ease;
}

.navbar.nav-hidden{
  transform:translateY(-120%);
}
/* NAVBAR MÁS PEQUEÑA */
.navbar{
  padding:10px 40px !important;
  min-height:70px !important;
}

.logo img{
  height:48px !important;
}

.nav-links{
  gap:32px !important;
}

.nav-links a{
  font-size:22px !important;
}

/* MOBILE */
@media (max-width:768px){

  .navbar{
    padding:8px 12px !important;
  }

  .logo img{
    height:52px !important;
  }

  .nav-links a{
    font-size:17px !important;
  }

}
.patan-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 92px;
  height: 110px;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.whatsapp-circle {
  width: 72px;
  height: 72px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 18px #ffa100;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffa100;
}

.whatsapp-circle span {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

.patan-dog {
  position: absolute;
  top: 0;
  width: 82px;
  z-index: 2;
  transform: translateY(-8px);
  animation: patanBounce 3s infinite ease-in-out;
}

.patan-message {
  position: absolute;
  right: 88px;
  bottom: 35px;
  background: #111;
  color: #fff;
  border: 1px solid #ffa100;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s;
  box-shadow: 0 0 14px rgba(255, 161, 0, 0.45);
}

.patan-whatsapp:hover .patan-message {
  opacity: 1;
  transform: translateX(0);
}

@keyframes patanBounce {
  0%, 100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 768px) {
  .patan-whatsapp {
    right: 14px;
    bottom: 16px;
    width: 100px;
    height: 110px;
  }

  .whatsapp-circle {
    width: 62px;
    height: 62px;
  }

  .patan-dog {
    width: 100px;
  }

  .patan-message {
    display: none;
  }
}
html,
body{
  overflow-y:auto !important;
  overflow-x:hidden;
}
#patanIntro{
  transition:opacity .8s ease;
}
.faq-item{
  cursor:pointer;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-item.active .faq-answer{
  max-height:500px !important;
}

.faq-item.active button::after{
  content:"-" !important;
}
