/* Fuente general */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #0b0b0d;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Fondo tipo espacio */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(60,60,80,0.2), transparent 70%),
              radial-gradient(circle at 80% 80%, rgba(60,60,80,0.2), transparent 70%);
  background-color: #0b0b0d;
  z-index: -1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
  z-index: 1000;
}

.navbar nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #3b82f6;
}

.logo {
  font-weight: 700;
  color: white;
}

.dashboard-btn {
  background: #3b82f6;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;

  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;

  transition: background-color 0.2s ease, transform 0.1s ease;
}

.dashboard-btn:hover {
  background: #2563eb;
}

.dashboard-btn:active {
  transform: scale(0.95);
}


/* Hero central */
.hero {
  text-align: center;
  margin-top: 180px;
}

.hero-logo-image {
  width: 600px; /* ancho fijo, ajusta a lo que quieras */
  height: auto; /* mantiene la proporción original */
}

.hero h1 {
  font-size: 70px;
  font-weight: 700;
  color: rgb(5, 1, 250);
}

.hero h1 span {
  color: #ec0000;
}

.hero h1 .rp {
  color: #ffffff;
}

.hero p {
  color: #999;
  max-width: 600px;
  margin: 20px auto;
}

/* Panel simulado */
.panel {
  display: flex;
  margin: 100px auto;
  width: 80%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.sidebar {
  width: 250px;
  background: rgba(0,0,0,0.4);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
}

.sidebar h3 {
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 10px 0;
  color: #aaa;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .navbar {
      padding: 10px 20px;
  }

  .dashboard-btn {
      max-width: 100px;
      padding: 8px 12px;
  }

  .hero h1 {
      font-size: 40px;
  }

  .hero-logo-image {
      width: 300px;
  }

  .panel {
      flex-direction: column;
      width: 95%;
      margin: 100px auto 20px auto;
  }

  .sidebar {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 10px;
  }
}

/* Agregar al final de tu style.css */

.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
  border-color: rgba(138, 43, 226, 0.5);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #8a2be2, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(138, 43, 226, 0.5);
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 5%;
  background: rgba(15, 12, 41, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/*SECION CONOCENOS*/

/* Conócenos Page Styles */

.conocenos-hero {
  text-align: center;
  padding: 4rem 5% 2rem;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
}

.conocenos-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8a2be2, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.conocenos-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Image Slider Section */
.image-slider-section {
  padding: 3rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 5px;
}

.slider-btn:hover {
  background: rgba(138, 43, 226, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 40px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Info Section */
.info-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
  border-color: rgba(138, 43, 226, 0.5);
}

.info-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
  text-align: center;
}

.stats-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8a2be2, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Staff Section */
.staff-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.staff-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.staff-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.staff-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
}

.staff-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.staff-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.staff-name {
  color: #8a2be2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.staff-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .conocenos-title {
    font-size: 2rem;
  }
  
  .slider-wrapper {
    height: 300px;
  }
  
  .slide-caption {
    font-size: 1.2rem;
    padding: 10px 25px;
    bottom: 20px;
  }
  
  .slider-btn {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .slider-indicators {
    bottom: 60px;
  }
  
  .info-container,
  .stats-container,
  .staff-container {
    grid-template-columns: 1fr;
  }
  
  .stats-title,
  .staff-title {
    font-size: 2rem;
  }
}

/* FAQ Section Styles */

.faq-section {
  padding: 3rem 5%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(138, 43, 226, 0.3);
}

.faq-item.active {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: #8a2be2;
  font-weight: 300;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Staff Section Styles */

.staff-section {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.staff-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #8a2be2, #4169e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staff-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.staff-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.staff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(65, 105, 225, 0.1));opacity: 0;
  transition: opacity 0.3s ease;
}

.staff-card:hover::before {
  opacity: 1;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(138, 43, 226, 0.4);
  border-color: rgba(138, 43, 226, 0.5);
}

.staff-avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.staff-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(138, 43, 226, 0.5);
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.staff-card:hover .staff-avatar {
  border-color: #8a2be2;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.6);
}

.discord-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #5865F2;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(15, 12, 41, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.discord-badge svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.staff-role {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.staff-name {
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.staff-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5865F2;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.staff-discord svg {
  width: 18px;
  height: 18px;
  fill: #5865F2;
}

.staff-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 5%;
  background: rgba(15, 12, 41, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  .staff-title {
    font-size: 2rem;
  }

  .staff-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .staff-avatar-container {
    width: 100px;
    height: 100px;
  }

  .staff-avatar {
    width: 100px;
    height: 100px;
  }

  .discord-badge {
    width: 30px;
    height: 30px;
  }

  .discord-badge svg {
    width: 16px;
    height: 16px;
  }
}

/* FAQ Hero Section - Nuevo diseño llamativo */
.faq-hero {
  text-align: center;
  padding: 5rem 5% 3rem;
  background: linear-gradient(135deg, rgba(52, 52, 53, 0.37) 0%, rgba(168, 168, 170, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(90, 90, 235, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.faq-hero-content {
  position: relative;
  z-index: 1;
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  animation: fadeInDown 0.6s ease;
}

.faq-main-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8a2be2, #4169e1, #8a2be2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease, gradientShift 3s ease infinite;
  line-height: 1.2;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.faq-hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive para FAQ Hero */
@media (max-width: 768px) {
  .faq-hero {
    padding: 3rem 5% 2rem;
  }

  .faq-badge {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .faq-main-title {
    font-size: 2.5rem;
  }

  .faq-hero-subtitle {
    font-size: 1.2rem;
  }
}


/* ================================
   Sección de Información General INICIO
==================================*/

/*COLOR FONDO PRINCIPAL DEL RECUADRO*/
.info-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem 5%;
  background: #0f0f10; /* Fondo principal del recuadro */
  color: #f5f5f5;      /* Color general del texto */
  border-radius: 1.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4); /*FONDO RECUADRO GRANDE*/
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

/*TÍTULO PRINCIPAL*/
.info-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #00bfa6; /* Color del título principal */
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 191, 166, 0.4); /* Brillo del título */
}

/* ================================
   Pestañas
==================================*/

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/*BOTONES NORMALES*/
.tab {
  background: #1c1c1f;       /* Fondo del botón normal */
  border: 2px solid #00bfa6; /* Borde del botón */
  color: #fff;               /* Texto del botón */
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

/*BOTONES AL PASAR EL MOUSE*/
.tab:hover {
  background: #00bfa6; /* Fondo del botón al pasar el mouse */
  color: #0f0f10;      /* Texto del botón al pasar el mouse */
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(0, 191, 166, 0.6); /* Efecto de brillo */
}

/*BOTÓN ACTIVO (seleccionado)*/
.tab.active {
  background: #00bfa6; /* Fondo del botón activo */
  color: #0f0f10;      /* Texto del botón activo */
  box-shadow: 0 0 15px rgba(0, 191, 166, 0.7); /* Efecto de brillo más fuerte */
}

/* ================================
   Contenido
==================================*/

/*RECUADRO INTERNO DONDE ESTÁ EL TEXTO*/
.content-box {
  background: #1a1a1d; /* Fondo del recuadro del contenido */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4); /* Sombra interna del recuadro */
  animation: fadeIn 0.4s ease;
}

/*TÍTULO DE CADA SECCIÓN (por pestaña)*/
.content-title {
  font-size: 1.6rem;
  color: #00bfa6; /* Color de los subtítulos */
  font-weight: 600;
  margin-bottom: 1rem;
}

/*TEXTO GENERAL DE CADA SECCIÓN*/
.content-text {
  line-height: 1.8;
  color: #d1d1d1; /* Color del texto principal */
  font-size: 1rem;
}

/*NOTA DESTACADA (por ejemplo, whitelist)*/
.whitelist-note {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #ffb84d; /* Color del texto destacado (amarillo) */
}

/* ================================
   Animación
==================================*/
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   Estados y utilidades
==================================*/
.hidden {
  display: none;
}

/* ================================
   Responsive (Móviles)
==================================*/
@media (max-width: 600px) {
  .info-section {
    padding: 2rem;
  }

  .info-title {
    font-size: 1.8rem;
  }

  .tab {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .content-title {
    font-size: 1.3rem;
  }
}

/* ========================================
   ESTILOS PARA SECCIÓN DE NORMATIVAS
   ======================================== */

.normativas-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.rules-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rule-item {
  background: rgba(20, 35, 25, 0.6);
  border-left: 5px solid #9acd32;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rule-item:hover {
  background: rgba(20, 35, 25, 0.8);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(154, 205, 50, 0.2);
}

.rule-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.rule-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.rule-number {
  background: #9acd32;
  color: #0a1a0f;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.rule-title-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.rule-icon {
  font-size: 28px;
  margin-right: 10px;
}

.rule-toggle {
  color: #3c32cd;
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.rule-item.active .rule-toggle {
  transform: rotate(180deg);
}

.rule-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rule-content-inner {
  padding: 0 30px 25px 95px;
  color: #c0d8c0;
  line-height: 1.8;
  font-size: 15px;
}

.rule-content ul {
  list-style: none;
  margin-top: 15px;
}

.rule-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.rule-content li:before {
  content: "▸";
  color: #9acd32;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.severity-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.severity-alta {
  background: rgba(220, 20, 60, 0.2);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.severity-media {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid #ffa500;
}

.severity-baja {
  background: rgba(154, 205, 50, 0.2);
  color: #9acd32;
  border: 1px solid #9acd32;
}

@media (max-width: 768px) {
  .rule-header {
    padding: 20px;
  }

  .rule-content-inner {
    padding: 0 20px 20px 20px;
  }

  .rule-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .rule-title-text {
    font-size: 16px;
  }

  .rule-item:hover {
    transform: translateX(5px);
  }
}

/* ========================================
   LAYOUT DE NORMATIVAS CON SIDEBAR
   ======================================== */

   .normativas-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
    min-height: calc(100vh - 400px);
  }
  
  /* ========================================
     SIDEBAR DE NAVEGACIÓN
     ======================================== */
  
  .normativas-sidebar {
    width: 300px;
    background: rgba(34, 35, 39, 0.8);
    border-right: 1px solid rgba(154, 205, 50, 0.2);
    padding: 30px 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .sidebar-header {
    padding: 0 25px 20px;
    border-bottom: 1px solid rgba(154, 205, 50, 0.2);
    margin-bottom: 20px;
  }
  
  .sidebar-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .sidebar-icon {
    font-size: 20px;
  }
  
  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .nav-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: #b8d4b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
  }
  
  .nav-category:hover {
    background: rgba(154, 205, 50, 0.1);
    color: #9acd32;
    border-left-color: #9acd32;
  }
  
  .nav-category.active {
    background: rgba(154, 205, 50, 0.15);
    color: #9acd32;
    border-left-color: #9acd32;
  }
  
  .category-icon {
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .category-name {
    flex: 1;
  }
  
  .expand-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #8ab88a;
  }
  
  .expand-arrow.expanded {
    transform: rotate(90deg);
  }
  
  .nav-category-parent {
    position: relative;
  }
  
  .subcategory-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(10, 20, 15, 0.5);
  }
  
  .subcategory-list.open {
    max-height: 500px;
  }
  
  .nav-subcategory {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px 10px 50px;
    color: #a0c0a0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    border-left: 3px solid transparent;
  }
  
  .nav-subcategory:hover {
    background: rgba(154, 205, 50, 0.08);
    color: #9acd32;
    border-left-color: rgba(154, 205, 50, 0.5);
  }
  
  .nav-subcategory.active {
    background: rgba(154, 205, 50, 0.12);
    color: #9acd32;
    border-left-color: #9acd32;
  }
  
  .subcategory-icon {
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .sidebar-footer {
    margin-top: 30px;
    padding: 15px 25px;
    border-top: 1px solid rgba(154, 205, 50, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ab88a;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .sidebar-footer:hover {
    color: #9acd32;
  }
  
  .credits-icon {
    font-size: 16px;
  }
  
  /* ========================================
     CONTENIDO PRINCIPAL
     ======================================== */
  
  .normativas-content {
    flex: 1;
    padding: 40px 60px;
    background: rgba(20, 10, 13, 0.3);
    overflow-y: auto;
  }
  
  .content-section {
    display: none;
  }
  
  .content-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .content-header {
    margin-bottom: 40px;
  }
  
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b9b6b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  
  .breadcrumb-icon {
    font-size: 14px;
  }
  
  .content-title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .content-intro {
    color: #b8d4b8;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* ========================================
     ITEMS DE CONCEPTOS/REGLAS
     ======================================== */
  
  .concept-item {
    background: rgba(20, 35, 25, 0.5);
    border-left: 4px solid #9acd32;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .concept-item:hover {
    background: rgba(20, 35, 25, 0.7);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(154, 205, 50, 0.1);
  }
  
  .concept-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .concept-header h2 {
    color: #9acd32;
    font-size: 20px;
    font-weight: 600;
  }
  
  .anchor-link {
    color: #6b9b6b;
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .concept-item:hover .anchor-link {
    opacity: 1;
  }
  
  .anchor-link:hover {
    color: #9acd32;
  }
  
  .concept-item p {
    color: #c0d8c0;
    line-height: 1.8;
    font-size: 15px;
  }
  
  .command-list {
    list-style: none;
    margin-top: 15px;
  }
  
  .command-list li {
    padding: 10px 0;
    color: #c0d8c0;
    font-size: 15px;
  }
  
  .command-list code {
    background: rgba(154, 205, 50, 0.2);
    color: #9acd32;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin-right: 10px;
  }
  
  /* ========================================
     SCROLLBAR PERSONALIZADO
     ======================================== */
  
  .normativas-sidebar::-webkit-scrollbar,
  .normativas-content::-webkit-scrollbar {
    width: 8px;
  }
  
  .normativas-sidebar::-webkit-scrollbar-track,
  .normativas-content::-webkit-scrollbar-track {
    background: rgba(20, 10, 13, 0.5);
  }
  
  .normativas-sidebar::-webkit-scrollbar-thumb,
  .normativas-content::-webkit-scrollbar-thumb {
    background: rgba(154, 205, 50, 0.3);
    border-radius: 4px;
  }
  
  .normativas-sidebar::-webkit-scrollbar-thumb:hover,
  .normativas-content::-webkit-scrollbar-thumb:hover {
    background: rgba(154, 205, 50, 0.5);
  }
  
  /* ========================================
     RESPONSIVE
     ======================================== */
  
  @media (max-width: 1024px) {
    .normativas-layout {
      flex-direction: column;
    }
  
    .normativas-sidebar {
      width: 100%;
      position: relative;
      top: 0;
      max-height: none;
      border-right: none;
      border-bottom: 1px solid rgba(154, 205, 50, 0.2);
    }
  
    .normativas-content {
      padding: 30px 20px;
    }
  
    .content-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 768px) {
    .nav-category {
      padding: 10px 20px;
      font-size: 13px;
    }
  
    .category-icon {
      font-size: 16px;
    }
  
    .concept-item {
      padding: 20px;
    }
  
    .concept-header h2 {
      font-size: 18px;
    }
  }

  /*PRUEBAA*/

 /* === SECCIÓN TIENDA === */
.store {
  padding: 3rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.store h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  animation: fadeInProducts 0.8s ease;
}

@keyframes fadeInProducts {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === TARJETAS DE PRODUCTO === */
.product {
  background: rgba(30, 30, 35, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(100, 100, 110, 0.2) 0%, rgba(60, 60, 70, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.product:hover::before {
  opacity: 1;
}

.product:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.product:hover img {
  transform: scale(1.08);
}

.product h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.product p {
  font-size: 1.8rem;
  color: #a0a0a0;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.add-to-cart {
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #606065 0%, #404045 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.add-to-cart:active {
  transform: translateY(0) scale(0.98);
}

/* === CARRITO === */
.cart {
  position: fixed;
  right: -450px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: rgba(25, 25, 30, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
  overflow-y: auto;
  border-left: 3px solid #505055;
  visibility: hidden;
}

.cart.open {
  right: 0;
  visibility: visible;
}

.cart h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #303035;
  font-weight: 700;
  position: relative;
}

.cart h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
}

#cart-items {
  list-style: none;
  margin-bottom: 2rem;
  min-height: 200px;
}

#cart-items li {
  background: linear-gradient(135deg, #35353a 0%, #2a2a2f 100%);
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInCart 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#cart-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #606065 0%, #404045 100%);
}

#cart-items li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes slideInCart {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart p {
  background: linear-gradient(135deg, #404045 0%, #303035 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#checkout {
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #606065 0%, #404045 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

#checkout:active {
  transform: translateY(-1px);
}

/* === BOTÓN TOGGLE CARRITO === */
.cart-toggle {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
  color: white;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cart-toggle:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #606065 0%, #404045 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.cart-toggle:active {
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* === BOTÓN CERRAR CARRITO === */
.close-cart {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #35353a;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #a0a0a0;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-cart:hover {
  color: white;
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.2);
}

/* === ESTADO VACÍO === */
.empty-cart {
  text-align: center;
  color: #6a6a6f;
  padding: 3rem 1rem;
  font-style: italic;
  font-size: 1.1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .cart {
    width: 100%;
    right: -100%;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .store {
    padding: 2rem 3%;
  }

  .cart-toggle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .product {
    padding: 1.5rem;
  }

  .store h2 {
    font-size: 2rem;
  }
}

/* === MODAL DE PAGO === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: rgba(30, 30, 35, 0.98);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #a0a0a0;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-subtitle {
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.9rem;
  background: rgba(50, 50, 55, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(60, 60, 65, 0.6);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-label a {
  color: #fff;
  text-decoration: underline;
}

.cart-summary {
  background: rgba(40, 40, 45, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-summary h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

#modal-cart-items {
  margin-bottom: 1rem;
}

.modal-cart-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #a0a0a0;
  font-size: 0.9rem;
}

.modal-cart-item:last-child {
  border-bottom: none;
}

.modal-cart-item span:first-child {
  color: #fff;
}

.modal-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #505055 0%, #303035 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #606065 0%, #404045 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
}