

:root{
  --bg:#0b0b0b;
  --card:#31313165;
  --accent:#0099ff;
  --muted:#bdbdbd;
  --glass: rgba(255,255,255,0.03);
  --max-width:1200px;
}
*{box-sizing:border-box}
body,html{
  margin:0;
  padding:0;
  font-family:Inter, sans-serif;
  background: url("assets/fondo-matador.png") no-repeat center center fixed;
  background-size: cover;
  color:#eee;
  text-transform: uppercase;
  font-weight: 900;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max-width);margin:0 auto;padding:20px}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(2, 50, 105, 0.356), rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  height: 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  max-height: 90px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

nav a:hover {
  background: rgba(2, 103, 235, 0.808);
}

.cta {
  background: transparent; /* Igual que .btn */
  border: 1px solid rgba(4, 84, 233, 0.151);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  margin-left: 12px;
}



/* Secciones */
section{padding:36px 0;border-bottom:1px solid rgba(1, 25, 240, 0.295)}
h1,h2,h3,h4,h5{margin:0 0 12px}
.lead{color:var(--muted);margin-bottom:18px}

/* Botones base */
.btn, .cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.151);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  /* animación para todos */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  color: #ffffff !important;
  border-color: var(--accent);
}

/* Efectos generales de hover y click */
.btn:hover, .cta:hover {
  transform: scale(1.05);
  background-color: #005eeb;
  box-shadow: 0 0 20px rgb(18, 214, 0);
}

.btn:active, .cta:active {
  transform: scale(0.95); /* efecto de "presionado" */
  box-shadow: 0 0 10px rgba(1, 99, 245, 0.856);

}

/* Cards */
.card{background:var(--card);padding:14px;border-radius:10px;border:1px solid rgba(255,255,255,0.03);margin-bottom:18px}

/* Footer */
footer{padding:24px 0;color:var(--muted);text-align:center}

/* Responsive */
@media(max-width:900px){
  nav ul{display:none}
}

/* Hero section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 70px);
  text-align: center;
  background: radial-gradient(circle at top, #0e0e0e9d, #050505a9); 
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.hero h1 .accent {
  color: #0058db;
  text-transform: uppercase;
}

.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Botón Discord */
.btn.discord {
  background: #197cfd42;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(2, 100, 228, 0.658);
}
.btn.discord:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(2, 145, 228, 0.8);
}
.btn.discord:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(2, 55, 228, 0.5);
}


.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.vip-card {
  background-color: #000;
  position: relative;
  height: 550px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  text-transform: none;
  overflow: hidden;
  align-items: center; /* centra horizontalmente */
  justify-content: center; /* centra verticalmente */
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vip-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 110, 255, 0.6);
}
.vip-img {
  width: 50%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}


.vip-title {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 12px rgba(0,0,0,0.8);
}

.vip-info {
  background: rgba(0,0,0,0.7);
  padding: 14px;
  text-align: center;
}

.vip-info h3 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
}

.old-price {
  text-decoration: line-through;
  color: #ff4d6d;
  font-size: 0.9rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.price .discount {
  background: #ffc107;
  color: #000;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-left: 6px;
}

.usd {
  color: #bbb;
  font-size: 0.95rem;
  margin-top: 6px;
}

.vip-info .buy-btn {
  display: block;
  margin: 12px auto 0 auto;
  text-align: center;
  width: 80%;
}


.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.checkout-card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

.checkout-card h3 {
  margin-bottom: 14px;
  color: #fff;
}

.checkout-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
}

.checkout-table td {
  padding: 8px 0;
  color: #eee;
}

.alert {
  background: rgba(255, 200, 0, 0);
  border: 1px solid rgba(255, 193, 7, 0);
  padding: 12px;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #ffc10700;
}

.creator-code {
  width: calc(100% - 60px);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  margin: 12px 0;
  background: #111;
  color: #fff;
}

.btn.pay {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px;
}

.btn.pay.mp {
  background: #009ee3;
  color: #fff;
}

.btn.pay.paypal {
  background: #003087;
  color: #fff;
}


.normativas-layout {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.sidebar-btn {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.sidebar-btn:hover {
  background: #0451c4;
  color: #fff;
}

.sidebar-btn.active {
  background: #1838c8;
  color: #fff;
}

.content {
  flex: 1;
}

.normativa {
  display: none;
}

.normativa.active {
  display: block;
}


.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.shop-tab {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  transition: background 0.2s ease;
}

.shop-tab:hover {
  background: #0457c4;
  color: #fff;
}

.shop-tab.active {
  background: var(--accent);
  color: #fff;
}

.shop-tab.merch {
  background: linear-gradient(90deg, #0004ff, #050052);
  color: #fff;
  border: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.shop-section {
  display: none;
}

.shop-section.active {
  display: block;
}

.emoji {
  filter: brightness(0) invert(1); /* fuerza el emoji a blanco */
  display: inline-block;
}

/* ===== MODAL BASE ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  padding: 60px 20px;
}

.modal-content {
  background: linear-gradient(180deg, #0f0f0f, #080808);
  margin: auto;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 1100px;
  color: #eaeaea;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.9);
  animation: modalFade 0.25s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #cfe4ff;
  letter-spacing: 0.5px;
}

/* ===== BOTÓN CERRAR ===== */
.close {
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  transition: color 0.2s ease;
}
.close:hover {
  color: #fff;
}

/* ===== ACLARACIÓN / NOTA ===== */
.nota {
  background: linear-gradient(90deg, #2a0f0f, #1a0707);
  border-left: 4px solid #ff4d4d;
  color: #ffd6d6;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ===== TABLA VIP ===== */
.vip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.vip-table thead th {
  background: rgba(255,255,255,0.03);
  color: #6fb1ff;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  font-size: 13px;
}

.vip-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #e0e0e0;
}

/* Columna de características */
.vip-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #cfd8e3;
}

/* Check y cross */
.vip-table td:contains("✔"),
.vip-table td:contains("✅") {
  color: #4dff88;
}

.vip-table td:contains("❌"),
.vip-table td:contains("✖"),
.vip-table td:contains("✕") {
  color: #ff4d4d;
}

/* Hover fila */
.vip-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

/* ===== SCROLL INTERNO SI ES LARGO ===== */
.modal-content {
  max-height: 85vh;
  overflow-y: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .vip-table {
    font-size: 12px;
  }
  .modal-content {
    padding: 20px;
  }
}


    .steps, .features {
  text-align: center;
  padding: 80px 20px;
}

.steps-container, .features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step, .feature {
  background: #111;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 4px 15px rgba(0, 72, 228, 0.6),
            0 0 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.step:hover, .feature:hover {
  transform: translateY(-10px);
}

.step-icon {
  width: 95px;
  height: 48px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 6px rgba(0, 102, 255, 0.6));
}
.step-icon2 {
  width: 60px;
  height: 60px;
  margin-bottom: 23px;
  filter: drop-shadow(0 0 6px  rgba(0, 102, 255, 0.6));
}

.step-icon3 {
  width: 120px;
  height: 90px;
  margin-bottom: 0px;
  filter: drop-shadow(0 0 6px rgba(0, 102, 255, 0.6));
}



.team {
  text-align: center;
  padding: 80px 20px;
}

.team h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.team p {
  color: var(--muted);
  margin-bottom: 40px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0, 72, 228, 0.6),
            0 0 20px rgba(0, 0, 0, 0.7);

  transition: transform 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #03389b;
  object-fit:fill
}

.team-card h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.role {
  font-size: 0.95rem;
  color: #045abd;
  font-weight: 600;
}


.normativas {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 1000px;
  box-shadow: 0 4px 15px  rgba(0, 102, 255, 0.6),
              0 0 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;

  text-transform: none; /* <- esto evita que el texto se vuelva mayúscula */
}

.discord-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  
}

/* Bloque link normativas completas */
.normativas-drive {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  text-align: center;
}

/* Link tipo botón */
.drive-link {
  display: inline-block;
  background: linear-gradient(135deg, #3b6fff, #0034c4);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 68, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover */
.drive-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 89, 255, 0.6);
}

/* Texto aclaratorio */
.drive-aclaracion {
  margin-top: 12px;
  font-size: 14px;
  color: #cfcfcf;
  opacity: 0.9;
}


.compra-aviso {
  background: linear-gradient(135deg, #2a1a1a, #1e1414);
  border: 1px solid rgba(80, 156, 255, 0.35);
  color: #ffb3b3;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.compra-aviso a {
  color: #ff4d4d;
  font-weight: 600;
  text-decoration: none;
}

.compra-aviso a:hover {
  text-decoration: underline;
}


.discord-promo {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg,  #0114e2,#00000077,#00000000);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  margin-top: 25px;
}

.discord-info {
  max-width: 60%;
}

.discord-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.discord-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.discord-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.discord-features li {
  margin-bottom: 6px;
}

.discord-btn {
  background: linear-gradient(135deg,  #0114e2,#00000077,#00000000);
  font-size: 16px;
  color: #ffffff !important;
  padding: 12px 22px;
}

.discord-btn:hover {
  color: white;
  background: linear-gradient(135deg,  #0114e2,#00000077,#00000000);
}

.discord-logo img {
  max-width: 150px;
}

.addon-notice {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: #1c232b;
  border: 1px solid #2b3a4a;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;

  /* 🔴 LO IMPORTANTE */
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;   /* ← quita MAYÚSCULAS */
  letter-spacing: normal; /* ← evita texto agresivo */

  color: #cfd8e3;
  z-index: 9999;
}


.addon-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #3b82f6; /* azul suave */
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;

  opacity: 0.9;
}



.addon-text {
  flex: 1;
  line-height: 1.4;
}

.addon-text a {
  color: #7aa2ff;
  text-decoration: none;
}

.addon-text a:hover {
  text-decoration: underline;
}

.addon-close {
  background: none;
  border: none;
  color: #8fa3b8;
  font-size: 16px;
  cursor: pointer;
}

.addon-close:hover {
  color: #ffffff;
}

.addon-hidden {
  display: none;
}



/* ============================= */
/* 📱 AJUSTES MOBILE */
/* ============================= */
@media (max-width: 768px) {

  /* Contenedor general */
  .container {
    padding: 0 15px;
  }

  main.container {
    margin-top: 20px;
  }

  /* HERO */
  .hero h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero .btn.discord {
    width: 100%;
    justify-content: center;
  }

  /* STEPS */
  .steps-container {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    width: 100%;
  }

  /* TEAM */
  .team-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    max-width: 100%;
  }

  /* TIENDA */
  .vip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vip-card {
    width: 100%;
  }

  /* BOTONES */
  .btn {
    width: 100%;
    text-align: center;
  }

  /* IMÁGENES */
  img {
    max-width: 100%;
    height: auto;
  }

  /* DISCORD PROMO */
  .discord-promo {
    flex-direction: column;
    text-align: center;
  }

  .discord-logo img {
    max-width: 150px;
    margin: 0 auto;
  }

  /* NOTIFICACIÓN ADDON */
  .addon-notice {
    right: 10px;
    left: 10px;
    bottom: 15px;
    width: auto;
  }
}
/* ============================= */
/* 📱 FIX NAV MOBILE */
/* ============================= */
@media (max-width: 768px) {

  header {
    position: relative; /* evita superposición */
  }

  header .nav {
    flex-direction: column;
    align-items: center;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 10px 0 0 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 15px;
  }

  .cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}


/* ===== MODAL ===== */
.modal2 {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.modal-content2 {
  background: #0f0f0f;
  max-width: 700px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  text-align: center;
}

.modal-close2 {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* ===== INTERIORES ===== */
.interior-table {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

.carousel-item h3 {
  margin: 0;
}

/* ===== BOTONES ===== */
.carousel-btn {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.btn.secondary {
  margin-top: 8px;
  background: transparent;
  border: 1px solid #fff;
}

/* ===== GALERÍA VEHÍCULO DEL MES ===== */
.vehiculo-galeria {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.vehiculo-galeria img {
  width: 100%;
  max-width: 370px;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .vehiculo-galeria {
    flex-direction: column;
    align-items: center;
  }

  .vehiculo-galeria img {
    max-width: 90%;
  }
}
