    :root {
      --color1: #e37127;
      --color2: #e1a82b;
      --text-light: #f8f9fa;
    }

body {
  background: radial-gradient(circle at bottom, #612503ff 0%, #000000 60%);
  background-attachment: fixed; /* Hace que el fondo se quede fijo */
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-light);
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}


    /* PANTALLA DE CARGA */
    .loader-overlay {
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.4s ease;
    }

    .loader-overlay.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .loader-overlay i {
      font-size: 2.5rem;
      color: var(--color1);
      animation: spin 1.5s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* NAVBAR */
    .navbar {
      transition: top 0.4s ease, background-color 0.4s ease;
      top: 30px; /* Debajo de la barra de idioma */
      z-index: 1050;
      padding: 2rem 6rem 0.75rem;
      font-size: 0.95rem;
    }
    .nav-hidden { top: -90px; }
    .nav-black { background-color: rgba(0, 0, 0, 0.85) !important; }
    .navbar-brand img { height: 38px; }
    .navbar-collapse { justify-content: space-between !important; }
    .navbar-nav { align-items: center; gap: 1.5rem; }
    .nav-link i { margin-right: 6px; }

    .btn-precios {
      border: 1px solid var(--text-light);
      color: var(--text-light);
      border-radius: 10px;
      padding: 0.4rem 1rem;
      font-weight: 500;
      font-size: 0.9rem;
      transition: background-color 0.3s;
    }
    .btn-precios:hover {
      background-color: var(--color1);
      color: #fff;
    }

    /* HERO */
    .hero {
      padding: 7rem 0 5rem;
      text-align: left;
    }
    .hero h1 {
      font-family: 'Bebas Neue', cursive;
      font-size: 4rem;
      letter-spacing: 1px;
    }
    .hero p {
      font-size: 1.125rem;
      max-width: 600px;
      opacity: 0.9;
    }
    .btn-acceso {
      background: linear-gradient(135deg, var(--color1), var(--color2));
      border: none;
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-acceso:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    /* RESOURCE CARDS */
    .recurso-card {
      background-color: #1c1c1c;
      border-radius: 14px;
      overflow: hidden;
      transition: transform 0.4s;
    }
    .recurso-card:hover {
      transform: translateY(-6px);
    }
    .recurso-card img { width: 100%; height: auto; }
    .recurso-card .badge { position: absolute; top: 10px; left: 10px; }

    /* DROPDOWN CUSTOM */
    .dropdown-menu {
      background-color: #000 !important;
      border: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      display: block;
      visibility: hidden;
      pointer-events: none;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
    }

    .dropdown-menu .dropdown-item {
      color: #f8f9fa;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #222;
      color: var(--color1);
    }

    /* IMAGEN CON GLOW */
    @keyframes pulse-glow {
      0% { filter: drop-shadow(0 0 10px rgba(227, 113, 39, 0.1)); }
      50% { filter: drop-shadow(0 0 20px rgba(227, 113, 39, 0.2)); }
      100% { filter: drop-shadow(0 0 10px rgba(227, 113, 39, 0.1)); }
    }
    .glow-img {
      max-width: 100%;
      height: auto;
      animation: pulse-glow 2.5s ease-in-out infinite;
    }

    /* FOOTER */
    .footer {
      background-color: #000;
      font-size: 0.9rem;
    }

    .footer a:hover {
      color: var(--color1);
    }

    .badge {
      border-radius: 20px !important;
    }

    /* Contenedor con efecto fade en los bordes */
    .recurso-swiper-container {
      position: relative;
      overflow: hidden;
      padding: 30px 0;
    }

.recurso-swiper-container::before,
.recurso-swiper-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.recurso-swiper-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.recurso-swiper-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

    .recurso-swiper-container::before {
      left: 0;
      background: linear-gradient(to right, #000 0%, transparent 100%);
    }

    .recurso-swiper-container::after {
      right: 0;
      background: linear-gradient(to left, #000 0%, transparent 100%);
    }

    /* Swiper básico */
    .recurso-swiper-marquesina {
      overflow: hidden;
    }

    .recurso-swiper-marquesina .swiper-wrapper {
      display: flex;
      align-items: center;
      transition-timing-function: linear !important;
    }

    .recurso-swiper-marquesina .swiper-slide {
      width: 380px !important;  /* Tamaño intermedio */
      flex-shrink: 0;
      margin-right: 24px;
    }

    /* Estilo de la tarjeta */
    .recurso-card {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .recurso-card img {
      width: 100%;
      height: auto;
      border-radius: 14px;
    }

    /* Estilo del badge */
    .recurso-card .badge {
      font-size: 0.8rem;
      padding: 5px 10px;
      border-radius: 20px;
    }

.recurso-card .badge img {
  height: 16px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

section.bg-dark {
  background-color: #030303 !important;
}

section.bg-dark h2 {
  font-weight: 500;
}

section.bg-dark p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.text-tittle{
  color: var(--color1);
}

.text-free{
  color: var(--color2);
}

.feature-card {
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}
.feature-card:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

/* Fondo visible en móviles para navbar fija */
@media (max-width: 991.98px) {
  .navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
  }
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    border-radius: 0 0 15px 15px;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .btn-precios {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
}

.btn{
  border-radius: 30px !important;
}

.barra-idioma {
  top: 0;
  left: 0;
  width: 100%;
  background-color: #242424;
  color: white;
  font-size: 14px;
  height: 36px;
  z-index: 1060; /* superior a .navbar */
}

.nav-fixed-top {
  top: 0 !important;
}