

:root{
  --bg:#0b0b0b;
  --card:#31313165;
  --accent:#c81818;
  --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(105, 2, 2, 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: 150px;
  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(235, 2, 2, 0.808);
}

.cta {
  background: transparent; /* Igual que .btn */
  border: 1px solid rgba(233, 4, 4, 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(240, 1, 1, 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 {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
}

/* Efectos generales de hover y click */
.btn:hover, .cta:hover {
  transform: scale(1.05);
  background-color: #c40404;
  box-shadow: 0 0 20px rgb(247, 1, 1);
}

.btn:active, .cta:active {
  transform: scale(0.95); /* efecto de "presionado" */
  box-shadow: 0 0 10px rgba(245, 1, 1, 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: #c40404;
  text-transform: uppercase;
}

.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Botón Discord */
.btn.discord {
  background: #fd191942;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(228, 2, 2, 0.658);
}
.btn.discord:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(228,2,2,0.8);
}
.btn.discord:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(228,2,2,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(255,0,0,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: #c40404;
  color: #fff;
}

.sidebar-btn.active {
  background: #c81818;
  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: #c40404;
  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 {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.7);
      padding-top: 60px;
    }
    .modal-content {
      background: #111;
      margin: auto;
      padding: 20px;
      border-radius: 12px;
      width: 95%;
      max-width: 1000px;
      color: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    .close {
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }
    .vip-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }
    .vip-table th,
    .vip-table td {
      border: 1px solid #333;
      padding: 10px;
      text-align: center;
    }
    .vip-table th {
      background: #222;
      color: #ff4444;
    }
    .vip-table tr:nth-child(even) {
      background: #1a1a1a;
    }
    .vip-table tr:nth-child(odd) {
      background: #0d0d0d;
    }
    .nota {
      background: #220000;
      color: #ff9999;
      padding: 10px;
      border-radius: 6px;
      margin-bottom: 10px;
    }


    .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(228, 0, 0, 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(255,0,0,0.6));
}
.step-icon2 {
  width: 60px;
  height: 60px;
  margin-bottom: 23px;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.877));
}

.step-icon3 {
  width: 100px;
  height: 100px;
  margin-bottom: 0px;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.877));
}



.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(228, 0, 0, 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 #770202;
  object-fit:fill
}

.team-card h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.role {
  font-size: 0.95rem;
  color: #bd0404;
  font-weight: 600;
}


.normativas {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 1000px;
  box-shadow: 0 4px 15px rgba(228, 0, 0, 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;
  
}
