/* iniciostyle.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
}

.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.glass-nav {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.title {
  font-size: 2.5rem;
  background: linear-gradient(90deg,#00ffff,#00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-futuristic {
  border: 1px solid #00ffff;
  color: #00ffff;
  transition: 0.3s;
}

.btn-futuristic:hover {
  background: #00ffff;
  color: black;
  box-shadow: 0 0 15px #00ffff;
}

.section {
  padding: 80px 0;
}

.card-glass {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.card-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ffff;
}

.carousel-img {
  height: 400px;
  object-fit: cover;
  filter: brightness(0.8);
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}



.carousel-container {
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  text-align: center;
}

.carousel-img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.5); /* oscurece para que el texto resalte */
}

.hero-overlay {
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* 
BAR BASE */
#navbar {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
}

/* CUANDO HACES SCROLL */
#navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

/* LOGO */
.brand-glow {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* LINKS */
.nav-custom {
  color: #00ffff;
  margin-left: 20px;
  position: relative;
  transition: 0.3s;
}

/* EFECTO HOVER */
.nav-custom::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00ffff;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.nav-custom:hover::after {
  width: 100%;
}

.nav-custom:hover {
  color: #00ffff;
}
/* LINK ACTIVO */
.nav-custom.active {
  color: #00ffff !important;
  text-shadow: 0 0 8px #00ffff;
  font-weight: bold;
}

/* LÍNEA ACTIVA */
.nav-custom.active::after {
  width: 100%;
}

.footer-pro {
  background: linear-gradient(135deg, #0f2027, #203a43);
  padding: 50px 0;
  color: white;
  position: relative;
  backdrop-filter: blur(10px);
}

/* TITULOS */
.footer-title {
  color: #00ffff;
  margin-bottom: 15px;
}

/* ICONOS */
.social-icons a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00ffff;
  transform: scale(1.2);
  text-shadow: 0 0 10px #00ffff;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00ffff;
  padding-left: 5px;
}

/* LINEA */
.footer-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #00ffff, transparent);
  margin: 20px 0;
}