:root {
  --azul: #1f2a44;
  --dorado: #f4b400;
  --naranja: #ff7a00;
}

html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body {
  display: block; /* O quita el flex si no lo usas para el footer */
  min-height: 100vh;
  background-color: #000; /* Fondo base negro para que todo fluya */
  padding-top: 0 !important;
}

.navbar {
  justify-content: center;
  z-index: 1050;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f4b400 !important;
}

.logo {
  max-width: 15rem;
  height: 12rem;
  display: block;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

/* Botón más elegante */
.btn-warning {
  background: linear-gradient(45deg, #f4b400, #ff7a00);
  border: none;
  color: white;
}

.btn-warning:hover {
  opacity: 0.9;
}

.bg-azul {
  background-color: var(--azul);
}

.btn-dorado {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border: none;
  color: black;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 35px;
  transition: all 0.3s ease;
}

.btn-dorado:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 180, 0, 0.6);
}

.navbar-toggler {
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* ========================= */
/* HERO SECTION PREMIUM */
/* ========================= */

.hero-section {
  padding-top: 150px; /* Ajustado por el tamaño de tu logo */
  padding-bottom: 80px;
  background:
    radial-gradient(circle at center, rgba(255, 180, 0, 0.15), transparent 60%),
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url("../img/world-map-gold.png"); /* Asegúrate de la ruta ../ */
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--dorado); /* Borde separador elegante */
}

/* Texto principal */
.hero-title {
  font-size: 3.5rem;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 180, 0, 0.25);
}

/* Subtitulo */
.hero-subtitle {
  color: #cccccc;
}

/* Oro AURYX */
.text-gold {
  background: linear-gradient(90deg, #f5c542, #ffae00, #f5c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botón oro premium */
.btn-gold {
  background: linear-gradient(45deg, #ffb300, #ff8800);
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  padding: 15px 40px;
  display: inline-block;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.6);
}

/* ===== BENEFICIOS SECTION ===== */

.beneficios-luxury {
  background: radial-gradient(circle at top, #0f0f0f, #000);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url("../img/fondo-particulas-doradas.png"); /* Ruta a la Imagen 2 */
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--dorado); /* Borde separador elegante */
}

.beneficios-luxury::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 193, 7, 0.6),
    transparent
  );
  opacity: 0.4;
}

/* Título */

.luxury-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}

.luxury-title span {
  background: linear-gradient(90deg, #ffc107, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxury-subtitle {
  color: #aaa;
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Cards */

.luxury-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Glow interno */

.luxury-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.luxury-card:hover::before {
  opacity: 1;
}

/* Hover real premium */

.luxury-card:hover {
  transform: translateY(-12px) scale(1.03);
  border: 1px solid #ffc107;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
}

/* Iconos */

.luxury-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  width: 65px;
  height: 65px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

/* Textos */

.luxury-card h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefit-content {
  background: #111;
  border: 1px solid var(--dorado);
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(244, 180, 0, 0.2);
}

.luxury-card p {
  color: #bbb;
  font-size: 1rem;
}

/* ===================== */
/* QUIENES SOMOS */
/* ===================== */

.auryx-about {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/auryx-city.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-top: 140px;
  padding-bottom: 140px;
  border-bottom: 2px solid var(--dorado); /* Borde separador elegante */
  position: relative;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.about-text {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
}

.about-content {
  z-index: 2;
}

/* ===================== */
/* ESTADISTICAS */
/* ===================== */

.stats-section {
  background:
    radial-gradient(circle at center, rgba(255, 193, 7, 0.1), transparent 70%),
    #000;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)),
    url("../img/fondo-particulas-doradas.png");
  padding: 120px 0;
  text-align: center;
  color: white;
  border-bottom: 2px solid var(--dorado); /* Borde separador elegante */
}

.stats-title {
  font-size: 2.8rem;
  font-weight: 800;
}

.stats-title span {
  background: linear-gradient(90deg, #ffc107, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Numeros y etiquetas */
.stat-item .stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffc107;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  color: #bbb;
  font-size: 1.5rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
