body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: #0c0c14;
  color: white;
  overflow-x: hidden;
}

/* Animación de gradiente para fondos */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animación para elementos que aparecen */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación para el brillo de botones */
@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 5px rgba(47, 86, 117, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(47, 86, 117, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(47, 86, 117, 0.5);
  }
}

/* Animación de pulso para botones */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

header {
  display: flex;
  align-items: center;
  padding: 0.8rem 3rem;
  background-color: rgba(12, 12, 20, 0.8);
  border-bottom: 2px solid rgba(47, 86, 117, 0.3);
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

header.no-banner {
  top: 0;
}

header .logo {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

header .logo:hover {
  transform: scale(1.05);
}

header .logo img {
  height: 39.7px;
  width: auto;
}

img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.nav-container {
  display: flex;
  justify-content: center;
  flex: 1;
}

header .nav-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: bold;
  padding: 0.7rem 1rem;
  border-radius: 15px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.nav-dropdown > a:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover > a:after {
  transform: rotate(180deg);
}

.nav-dropdown > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-dropdown > a:hover {
  color: white;
  background-color: rgba(47, 86, 117, 0.1);
}

.nav-dropdown > a:hover:before {
  width: 80%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 12, 20, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(47, 86, 117, 0.3);
  border-radius: 12px;
  min-width: 180px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.85rem;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: #4a8bba;
  background-color: rgba(47, 86, 117, 0.1);
  border-left-color: #4a8bba;
  padding-left: 1.8rem;
}

/* Dropdown mejorado con imágenes para servidores */
.dropdown-with-images {
  min-width: 220px;
  padding: 0.8rem 0;
}

.dropdown-item-with-image {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.dropdown-item-with-image img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(47, 86, 117, 0.3);
  transition: all 0.3s ease;
}

.dropdown-item-with-image:hover {
  color: #4a8bba;
  background-color: rgba(47, 86, 117, 0.1);
  border-left-color: #4a8bba;
  padding-left: 1.5rem;
}

.dropdown-item-with-image:hover img {
  border-color: #4a8bba;
  transform: scale(1.1);
}

header .nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: bold;
  padding: 0.7rem 1rem;
  border-radius: 15px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

header .nav-links a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header .nav-links a:hover {
  color: white;
  background-color: rgba(47, 86, 117, 0.1);
}

header .nav-links a:hover:before {
  width: 80%;
}

.abrir-menu,
.cerrar-menu {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.abrir-menu:hover,
.cerrar-menu:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
  header {
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
  }

  .abrir-menu {
    display: block;
  }

  .menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background: rgba(12, 12, 20, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    justify-content: space-between;
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(47, 86, 117, 0.3);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .menu-container.active {
    right: 0;
  }

  .cerrar-menu {
    display: block;
    align-self: flex-end;
    margin-bottom: 1rem;
  }

  .nav-container {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem 0;
    border-radius: 8px; /* Corrected: changed 8¿px to 8px */
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .nav-links a:hover {
    background-color: rgba(47, 86, 117, 0.2);
  }

  .right-section {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
  }

  .social-icons {
    margin-bottom: 1.5rem;
  }
}

/* Añadir estilos para el overlay del menú móvil */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header .social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

header .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #b0b0b0;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.0rem;
  transition: all 0.3s;
  background: rgba(47, 86, 117, 0.1);
}

header .social-icons a:hover {
  background: linear-gradient(135deg, #2f5675, #4a8bba);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 86, 117, 0.4);
}

header .auth-buttons {
  flex: 0 0 auto;
}

/* Corregir animación de botones */
header .auth-buttons a {
  padding: 8px 23px;
  border-radius: 12px;
  border-color: #5865f2;
  width: max-content;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  color: #f1f1f1;
  font-weight: bold;
  background: linear-gradient(95.25deg, #5865f2 -25.47%, #4752c4 50%, #3c45a5 114.98%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

header .auth-buttons a i {
  font-size: 16px;
}

header .auth-buttons a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(88, 101, 242, 0.2), rgba(71, 82, 196, 0.4));
  transition: all 0.5s ease;
  z-index: -1;
}

header .auth-buttons a:hover {
  border-color: #7289da;
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
}

header .auth-buttons a:hover:before {
  width: 100%;
}

.hero {
  position: relative;
  text-align: center;
  padding: 6rem 1rem 3rem;
  background: linear-gradient(
      to bottom,
      rgba(12, 12, 20, 0.7) 0%,
      rgba(12, 12, 20, 0.5) 50%,
      rgba(12, 12, 20, 0.9) 90%,
      rgba(12, 12, 20, 1) 100%
    ), url("images/navidad-banner-8eb81ab0d9resize=1&w=1280&h=720&quality=medium.jpg") center / cover no-repeat;
  background-color: #0c0c14;
  margin-top: -80px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(47, 86, 117, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1,
.hero p,
.hero .cta-buttons {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(90deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation-delay: 0.4s;
}

.hero h2 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-seccion {
  text-align: center;
  padding: 7rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
}

.hero-seccion:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.hero-seccion:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.hero-seccion p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #b0b0b0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.hero-seccion.visible p {
  opacity: 1;
  transform: translateY(0);
}

.hero-seccion h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.hero-seccion.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

body {
  background-color: #0c0c14;
}

/* Botones CTA mejorados */
.cta-button {
  padding: 12px 37px;
  border-radius: 16px;
  border: 2px solid #2f5675;
  width: max-content;
  cursor: pointer;
  font-size: 19px;
  text-decoration: none;
  color: #f1f1f1;
  font-weight: bold;
  background: linear-gradient(95.25deg, #1b1e2c -25.47%, #1c2438 2.62%, #213f67 114.98%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation-delay: 0.6s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(47, 86, 117, 0.2), rgba(74, 139, 186, 0.4));
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(33, 63, 103, 0.5);
  border-color: #4a8bba;
}

.cta-button:hover:before {
  width: 100%;
}

/* Botón de Discord con diseño diferente */
.cta-button.discord {
  background: linear-gradient(95.25deg, #5865f2 -25.47%, #4752c4 50%, #3c45a5 114.98%);
  border-color: #5865f2;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button.discord:before {
  background: linear-gradient(90deg, rgba(88, 101, 242, 0.2), rgba(71, 82, 196, 0.4));
}

.cta-button.discord:hover {
  border-color: #7289da;
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
}

.cta-button.discord:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cta-button.discord:hover:after {
  opacity: 1;
}

.cta-button i {
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  animation-delay: 0.6s;
}

.cta-button.launcher-button {
  background: linear-gradient(95.25deg, #00b058 -25.47%, #00c261 50%, #00cc66 114.98%);
  border-color: #00cc66;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 15px;
  padding: 12px 17px;
  border-radius: 14px;
}

.cta-button.launcher-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(95.25deg, #00a4575e -25.47%, #00cc6673 50%, #0099455e 114.98%);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button.launcher-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.3);
  border-color: #00cc66;
}

.cta-button.launcher-button:hover:before {
  width: 100%;
}

/* Carrusel mejorado para todos los dispositivos */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 2rem auto 0;
  padding: 0;
}

.carousel-section {
  margin-top: 0rem;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
}

.carousel-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.carousel-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.carousel-section.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  position: relative;
}

.carousel-container {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  gap: 2rem;
}

.carousel-card {
  flex: 0 0 300px;
  background: rgba(23, 23, 35, 0.7);
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid #272727;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-card:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 86, 117, 0.2), transparent);
  transition: all 0.5s ease;
}

.carousel-card.active {
  transform: scale(1.0);
  background: rgba(30, 30, 45, 0.95);
  border-color: #2f5675;
  box-shadow: 0 15px 40px rgba(33, 63, 103, 0.3);
}

.carousel-card.active:before {
  top: 0;
}

.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-card.active img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-card h3 {
  color: #ffffff;
  text-align: center;
  font-size: 1.1rem;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-card.active h3 {
  color: #4a8bba;
  transform: scale(1.05);
}

.carousel-card h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  transition: all 0.5s ease;
  transform: translateX(-50%);
}

.carousel-card.active h3:after {
  width: 50%;
}

.carousel-arrow {
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 0 1rem;
  transition: all 0.3s ease;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23, 23, 35, 0.5);
  backdrop-filter: blur(5px);
  position: absolute;
}

.carousel-arrow-left {
  left: 10px;
}

.carousel-arrow-right {
  right: 10px;
}

.carousel-arrow:hover {
  color: #ffffff;
  background: rgba(47, 86, 117, 0.2);
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .carousel-card {
    flex: 0 0 250px;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 200px;
    padding: 1rem;
  }

  .carousel-card.active {
    transform: scale(1.05);
  }

  .carousel-section h2 {
    font-size: 2rem;
  }

  .carousel-arrow {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-seccion h2 {
    font-size: 2.5rem;
  }

  .carousel-arrow-left {
    left: 5px;
  }

  .carousel-arrow-right {
    right: 5px;
  }
}

@media (max-width: 480px) {
  header {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }

  header .logo {
    flex: 1;
  }

  header .social-icons {
    margin-bottom: 1rem;
  }

  header .auth-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 40px;
    font-size: 18px;
  }

  .carousel-card {
    flex: 0 0 180px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

main {
  padding-top: 130px;
}

/* Pie de página mejorado */
footer {
  background: linear-gradient(180deg, #0c0c14 0%, #0a0a10 100%);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(47, 86, 117, 0.3);
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo-link img {
  height: 120px;
  width: auto;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #b0b0b0;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
  background: rgba(47, 86, 117, 0.1);
  border: 2px solid rgba(47, 86, 117, 0.2);
}

.footer-social-icons a:hover {
  background: linear-gradient(135deg, #2f5675, #4a8bba);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 86, 117, 0.4);
  border-color: #4a8bba;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-section ul a:hover {
  color: #4a8bba;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(47, 86, 117, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-left {
  flex: 1;
}

.footer-bottom-left p {
  color: #888;
  font-size: 0.85rem;
  margin: 0.3rem 0;
}

.footer-legal-note {
  font-size: 0.75rem !important;
  font-style: italic;
  opacity: 0.7;
}

.footer-dmca {
  flex-shrink: 0;
}

.dmca-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.dmca-badge:hover {
  transform: scale(1.05);
  opacity: 1;
}

.dmca-badge img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left {
    order: 2;
  }

  .footer-dmca {
    order: 1;
  }
}

/* Partículas flotantes */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  display: block;
  background: rgba(47, 86, 117, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

/* Efecto de scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo .logo-container {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: 0.5rem;
  }
}

/* Loader y animación de página */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0c14;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(47, 86, 117, 0.3);
  border-radius: 50%;
  border-top-color: #4a8bba;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Efecto de hover para las tarjetas del carrusel */
.carousel-card {
  cursor: pointer;
}

.carousel-card:hover:not(.active) {
  transform: translateY(-10px) scale(0.95);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(47, 86, 117, 0.5);
}

/* Transición suave al quitar el mouse - Unificar con el botón de registro */
.cta-button,
header .auth-buttons a {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease, background 0.3s ease;
}

.cta-button:not(:hover),
header .auth-buttons a:not(:hover) {
  transform: scale(1) translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Nuevas secciones para generar confianza */
.testimonials-section {
  padding: 7rem 1rem;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.testimonials-section.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(23, 23, 35, 0.7);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid #272727;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #2f5675;
  box-shadow: 0 15px 40px rgba(33, 63, 103, 0.3);
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid #2f5675;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.testimonial-info p {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.testimonial-body {
  color: #e0e0e0;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-body:before {
  content: "";
  font-size: 4rem;
  color: rgba(47, 86, 117, 0.2);
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
}

.stats-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #131320 0%, #0c0c14 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(23, 23, 35, 0.5);
  border-radius: 15px;
  border: 1px solid #272727;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #2f5675;
  box-shadow: 0 15px 40px rgba(33, 63, 103, 0.3);
}

.stat-icon {
  font-size: 2.5rem;
  color: #4a8bba;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.partners-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
  position: relative;
  overflow: hidden;
}

.partners-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.partners-section.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.partner-card {
  background: rgba(23, 23, 35, 0.5);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #272727;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.partner-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: #2f5675;
  box-shadow: 0 15px 40px rgba(33, 63, 103, 0.3);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .testimonials-grid,
  .stats-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card,
  .stat-card,
  .partner-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Banner mejorado con animación más fluida y optimizada */
.promo-banner {
  background: linear-gradient(135deg, #2f5675 0%, #4a8bba 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  box-shadow: 0 4px 20px rgba(47, 86, 117, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  backdrop-filter: blur(10px);
  will-change: transform;
}

.promo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-icon {
  font-size: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.promo-text {
  margin: 0;
  letter-spacing: 0.5px;
}

.promo-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.1rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
  font-size: 0.9rem;
}

.promo-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.promo-banner.hide {
  transform: translateY(-100%);
  opacity: 100;
}

/* Links dentro del banner */
.promo-banner a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.promo-banner a:hover {
  color: #00ddff;
  text-decoration: none;
}

/* 📱 Versión móvil */
@media (max-width: 768px) {
  .promo-banner-content {
    font-size: 0.8rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .promo-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  header {
    top: 48px;
  }

  header.no-banner {
    top: 0;
  }

  main {
    padding-top: 110px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .promo-banner-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  header {
    top: 70px;
  }
}

/* Nueva sección de eventos con grid (sin carrusel) */
.events-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
  position: relative;
  overflow: hidden;
}

.events-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.events-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.event-card {
  background: rgba(23, 23, 35, 0.7);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #272727;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
  transform: translateY(-15px);
  border-color: #2f5675;
  box-shadow: 0 20px 50px rgba(47, 86, 117, 0.4);
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-info {
  padding: 1.5rem;
  text-align: center;
}

.event-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.event-info p {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.events-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Sección Quiénes somos mejorada con grid de servicios */
.about-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #131320 0%, #0c0c14 100%);
  position: relative;
  overflow: hidden;
}

.about-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(23, 23, 35, 0.6);
  border: 2px solid #272727;
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: #2f5675;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(47, 86, 117, 0.3);
}

.service-card:hover:before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: #4a8bba;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.service-card p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Sección del launcher con efecto 3D mejorado */
.launcher-section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0c14 0%, #131320 100%);
}

.launcher-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.launcher-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.launcher-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.launcher-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #b0b0b0;
}

.launcher-image-container {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.launcher-image {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.launcher-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(47, 86, 117, 0.5);
  border: 3px solid rgba(47, 86, 117, 0.3);
  transition: all 0.3s ease;
}

.launcher-image:hover img {
  box-shadow: 0 30px 100px rgba(47, 86, 117, 0.7);
  border-color: rgba(47, 86, 117, 0.6);
}

@media (max-width: 968px) {
  .launcher-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Nueva sección de artículos */
.articles-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #131320 0%, #0c0c14 100%);
  position: relative;
  overflow: hidden;
}

.articles-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.articles-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.articles-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 3rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.article-card {
  background: rgba(23, 23, 35, 0.7);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #272727;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
  transform: translateY(-12px);
  border-color: #2f5675;
  box-shadow: 0 20px 50px rgba(47, 86, 117, 0.4);
}

.article-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.15);
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-category i {
  margin-right: 0.3rem;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  line-height: 1.4;
}

.article-content p {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.article-link {
  color: #4a8bba;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.article-link:hover {
  color: #5a9bca;
  gap: 0.8rem;
}

.article-link i {
  transition: transform 0.3s ease;
}

.article-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Nueva sección CTA final */
.final-cta-section {
  padding: 2.3rem 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffffff, #4a8bba);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s ease;
}

.final-cta-content p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.cta-button-large {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  animation: fadeInUp 1.2s ease, pulse 2s ease-in-out infinite;
}

.final-cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(47, 86, 117, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 139, 186, 0.1) 0%, transparent 50%);
  animation: floatParticles 15s ease-in-out infinite;
}

@keyframes floatParticles {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

@media (max-width: 768px) {
  .final-cta-content h2 {
    font-size: 2rem;
  }

  .final-cta-content p {
    font-size: 1rem;
  }

  .cta-button-large {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

/* Footer mejorado y más profesional */
footer {
  background: linear-gradient(180deg, #0c0c14 0%, #0a0a10 100%);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(47, 86, 117, 0.3);
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 86, 117, 0.5), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo-link img {
  height: 120px;
  width: auto;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #b0b0b0;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
  background: rgba(47, 86, 117, 0.1);
  border: 2px solid rgba(47, 86, 117, 0.2);
}

.footer-social-icons a:hover {
  background: linear-gradient(135deg, #2f5675, #4a8bba);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(47, 86, 117, 0.4);
  border-color: #4a8bba;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2f5675, #4a8bba);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-section ul a:hover {
  color: #4a8bba;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(47, 86, 117, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-left {
  flex: 1;
}

.footer-bottom-left p {
  color: #888;
  font-size: 0.85rem;
  margin: 0.3rem 0;
}

.footer-legal-note {
  font-size: 0.75rem !important;
  font-style: italic;
  opacity: 0.7;
}

.footer-dmca {
  flex-shrink: 0;
}

.dmca-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.dmca-badge:hover {
  transform: scale(1.05);
  opacity: 1;
}

.dmca-badge img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left {
    order: 2;
  }

  .footer-dmca {
    order: 1;
  }
}

@media (max-width: 768px) {
  .promo-banner-content {
    font-size: 0.8rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .promo-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  header {
    top: 48px;
  }

  header.no-banner {
    top: 0;
  }

  main {
    padding-top: 110px;
  }
}

@media (max-width: 480px) {
  .promo-banner-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  header {
    top: 70px;
  }
}

.cc-link {
  color: #888888; /* Cambia este color al que quieras */
  text-decoration: none; /* opcional: quita el subrayado */
}

.cc-link:hover {
  color: #c5c5c5; /* opcional: color cuando pasas el mouse */
}
