* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Verdana', sans-serif;
}

body {
  background: #000;
  color: #fff;
  user-select: none;
}


/* Estilos básicos del navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    padding: 1rem 2rem;
    box-shadow: 0 0 10px #ff0000aa;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  nav h1 {
    color: #ff0000;
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
  }
  
  .nav-links a:hover {
    color: #ff0000;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-links a:hover::after {
    transform: scaleX(1);
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
  }
  
  .menu-icon i {
    font-size: 24px;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 2rem;
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px #ff000066;
    z-index: 1000;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #111;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 10px 0;
      text-align: center;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-icon {
      display: block;
    }
  
    .dropdown-content {
      position: static;
      display: none;
    }
  
    .dropdown:hover .dropdown-content {
      display: block;
    }
  }
  

header {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 3rem 2rem 1rem;
    height: 60vh; 
    background: url('https://giffiles.alphacoders.com/221/221891.gif') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden; 
  }
  
  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  
  header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 35, 35, 0.6); 
    z-index: 0; 
  }
  
  header h2 {
    color: #ff0000;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    z-index: 1; 
    position: relative;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    z-index: 1;
    position: relative;
  }
  
  .btn {
    background-color: #ff0000;
    color: white;
    padding: 1rem 2rem;
    margin-top: 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
  }
  
  .btn:hover {
    background-color: #cc0000;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.9), 0 0 30px rgba(255, 69, 0, 0.7);
    filter: brightness(1.5);
    animation: burn 0.5s forwards;
  }
  
  @keyframes burn {
    0% {
      background-color: #ff0000;
      box-shadow: 0 0 10px rgba(255, 69, 0, 0.8), 0 0 15px rgba(255, 69, 0, 0.7);
    }
    50% {
      background-color: #ff4500;
      box-shadow: 0 0 20px rgba(255, 69, 0, 1), 0 0 25px rgba(255, 69, 0, 0.8);
    }
    100% {
      background-color: #cc0000;
      box-shadow: 0 0 30px rgba(255, 69, 0, 1), 0 0 35px rgba(255, 69, 0, 0.9);
    }
  }
  .drako-intro {
    background: linear-gradient(145deg, #0a0a0a, #111);
    color: #eaeaea;
    padding: 5rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .drako-content {
    max-width: 900px;
    margin: 0 auto;
    border-left: 6px solid #ff0000;
    padding-left: 2rem;
  }
  
  .drako-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .drako-intro h2 span {
    color: #ff0000;
  }
  
  .drako-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  .drako-intro h3 {
    font-size: 1.6rem;
    color: #ff0000;
    margin: 2rem 0 1rem;
  }
  
  .drako-intro ul {
    padding-left: 1rem;
    list-style-type: "➤ ";
    margin-bottom: 2rem;
  }
  
  .drako-intro li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .drako-intro strong {
    color: #ff5555;
  }
    
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: #111;
  }
  
  .feature {
    flex: 1 1 250px;
    margin: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-left: 4px solid #ff0000;
    border-radius: 8px;
    box-shadow: 0 0 15px #ff000055;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-10px); 
    box-shadow: 0 0 20px #ff0000; 
  }
  
  .feature h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .feature p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .feature h3 i {
    font-size: 1.8rem; 
    color: #ff0000; 
    transition: color 0.3s ease;
  }
  
  .feature h3:hover i {
    color: #fff; 
  }
  

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
  }
  
  .user-details {
    display: flex;
    flex-direction: column;
  }
  
  .user-details span {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: bold;
  }
  
  .stars {
    color: gold;
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
.testimonios {
  background: #0a0a0a;
  padding: 3rem 1.5rem;
  text-align: center;
}

.testimonios h2 {
  color: #ff0000;
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.testimonio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonio {
  background: #1a1a1a;
  border-left: 4px solid #ff0000;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 0 10px #ff000044;
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonio:hover {
  transform: scale(1.05);
}

.testimonio img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #ff0000;
}

.testimonio p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonio span {
  color: #ccc;
  font-size: 0.9rem;
}

footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  footer a {
    color: #ff0000;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #fff;
  }
  
  .social-links {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  
  .social-links a {
    margin: 0 0.7rem;
  }
  
@media (max-width: 768px) {
  .testimonio-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

  .nav-links.menu-active {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
}

.stats {
    background-color: #0a0a0a; 
    padding: 5rem 1.5rem;
    text-align: center;
  }
  
  .stats .container {
    width: 80%;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.3rem;
    color: #ff0000;
    margin-bottom: 2rem;
  }
  
  .stats p {
    font-size: 1.2rem;
    color: #a7b7f9; 
    margin-bottom: 3rem;
    line-height: 1.6;
  }
  
  .stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .stat-card {
    background-color: #1a1a1a; 
    border-left: 4px solid #ff0000; 
    padding: 2rem;
    flex-basis: 30%;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }
  
  .stat-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff0000; 
  }
  
  .stat-card p {
    font-size: 1.1rem;
    color: #ddd; 
  }
  
  .stat-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3); 
  }
  

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;  user-select: none;
    user-select: none;
}

.loader-img {
    width: 120px;
    height: auto;
    animation: fadeIn 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #ff0000a6);
    user-select: none;

}

@keyframes fadeIn {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* */ 
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: rgb(14, 12, 12);
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    text-align: center;
    font-family: Arial, sans-serif;
    border-left: 6px solid red; /* 👉 Aquí está el borde rojo */
  }
  

  .close {
    color: #aaa;
    float: right;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: black;
  }
  /* Modal oculto por defecto */
.social-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  
  .social-modal .modal-content {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px #ff0000cc;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* Botón para cerrar */
  .close-modal {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ff0000;
  }
  
  .close-modal:hover {
    color: #fff;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    margin-top: 20px;
  }
  
  .social-links a {
    color: #ce2020cb;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-links a:hover {
    transform: scale(1.2);
    color: #ff0404;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
  }


  a.btn {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  a.btn:hover {
    background-color: #cc0000;
  }
  
  ::-webkit-scrollbar {
    width: 12px; 
    height: 12px; 
}

::-webkit-scrollbar-track {
    background-color: #000000; 
    border-radius: 10px;/
}
::-webkit-scrollbar-thumb {
    background-color: #f13d2d87; 
    border-radius: 10px; 
    border: 3px solid #000000; 
}
::-webkit-scrollbar-thumb:hover {
    background-color: #f12d2d; 
}