/* Tipografía futurista (puedes usar Orbitron, Audiowide, o tu favorita) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  padding-right: 0 !important;
}

.seccion {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.u-text-sombra {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  font-family: 'Playfair Display', serif;
}
.u-text-sombra-blanca, h4 {
  color: rgb(10, 9, 9);
  text-shadow: 2px 2px 4px rgba(254, 253, 253, 0.998);
  font-family: 'Playfair Display', serif;
  text-align: center;
}
.p-text-sombra-blanca {
  color: rgb(10, 9, 9);
  text-shadow: 2px 2px 4px rgba(254, 253, 253, 0.998);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}



.u-section-2 .u-sheet-1 .u-section-15 {
  background-color: rgba(255, 255, 255, 0.6); 
  padding: 2rem;
  
}

h4 {
  transition: color 0.3s ease;
}

h4:hover {
  color: red;
}

.navbar {
  background-color: transparent !important;
  border: none;
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .navbar-text {
  color: #ffffff;
}

.navbar .nav-link:hover {
  color: #0ff;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.parrafo-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0; 
  position: relative;
  top: -40px; 
}
.p-efecto-pixelado {
  filter: blur(4px);
  transition: filter 3s ease;
}

.p-efecto-pixelado.visible {
  filter: blur(0px);
}
.red-text :hover {
  color: whitesmoke;
  transition: color 0.3s ease;
}

/* Tamaño más chico del modal */
.modal-dialog {
  max-width: 400px;
  margin: 1rem;
  position: fixed;
  top: 20px;
  right: 20px;
  left: auto;
  bottom: auto;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

/* Cuando el modal está visible */
.modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.custom-modal {
  background-color: #111;
  color: #fff;
  border: 1px solid #222;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.text-cyan {
  color: #00ffff;
}

.btn-cyan {
  background-color: #00ffff;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-cyan:hover {
  background-color: #00cccc;
}

.form-control {
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
}

.form-control:focus {
  border-color: #00ffff;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
  background-color: #111;
}



.custom-modal {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #f1f1f1;
  font-family: 'Orbitron', sans-serif;
  border: 2px solid #00ffff33;
  box-shadow: 0 0 25px #00ffff33;
  border-radius: 12px;
  animation: modalFadeIn 0.6s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  border-bottom: 1px solid #00ffff22;
  background-color: #111;
}

.modal-title {
  color: #00ffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.2rem;
  color: #ff0044;
}

.close {
  color: #ff0044;
  text-shadow: none;
}

.close:hover {
  color: #ffffff;
}

.form-control {
  background-color: #1c1c1c;
  color: #eee;
  border: 1px solid #00ffff44;
  border-radius: 6px;
}

.form-control:focus {
  border-color: #00ffff;
  box-shadow: 0 0 10px #00ffff66;
  background-color: #222;
  color: #fff;
}

label {
  color: #ccc;
}

.btn-cyan {
  background-color: #ff0044;
  border: none;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ff004455;
}

.btn-cyan:hover {
  background-color: #ff3366;
  box-shadow: 0 0 20px #ff0044aa;
}

select option {
  background-color: #1c1c1c;
}
.modal-body {
  min-height: 60vh;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5); /* fondo semi-transparente */
  border-radius: 10px;
  padding: 1rem;
}
