/* =====================================
Reset y configuración global
======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow: hidden;
  overflow-x:hidden;
  overflow-y: auto;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* =====================================
Estilos Extraídos del HTML
======================================== */

/* Aplicar la fuente Roboto a los párrafos específicos */
#somos-otakufest p,
.info-text {
  font-family: 'Roboto', sans-serif;
}

/* Fondos para las cartas de "Nuestros Eventos" */
/* Carta del Concurso de Cosplay */
.carta-cosplay {
  background-image: url('img/cosplay1.jpg');
  background-size: cover;
  background-position: center;
}

/* Carta de los Talleres */
.carta-talleres {
  background-image: url('img/image.png');
  background-size: cover;
  background-position: center;
}

/* Carta de la Venta de Merchandising */
.carta-merch {
  background-image: url('img/merch.jpg');
  background-size: cover;
  background-position: center;
}

/* =====================================
Tipografía y elementos base
======================================== */
h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 2.7em;
}

h3 {
  font-size: 2em;
}

p {
  font-size: 1.25em;
}

ul {
  list-style: none;
}

li {
  font-size: 1.25em;
}

/* =====================================
Botones
======================================== */
button {
  font-size: 1.25em;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  color: white;
  background-color: blueviolet;
  cursor: pointer;
}

button:hover {
  background-color: rgb(187, 180, 194);
}

/* =====================================
Contenedores y utilidades
======================================== */
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.color-acento {
  color: blueviolet;
}

/* =====================================
HEADER
======================================== */

/*
header {
  background-image: linear-gradient(to right, #0d0a09, #181305);
  animation: gradient 15s ease infinite;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

header .logo img {
  width: 120px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.1);
  /*background: linear-gradient(135deg, #8A2BE2, #9400D3);
}
*/
/* Título del banner */
/*
header .banner-title {
  font-family: 'Anton', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 4rem;
  color: #ebc90e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: popIn 1s ease-out;
  margin: 0 20px;
  margin-top: 20px;

}

header .banner-title2 {
  font-family: 'Glacial Indifference', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  color: #ebc90e;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: popIn 1s ease-out;
  margin: 0 20px;
}

footer .banner-title2 {
  font-family: 'Glacial Indifference', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  color: #ebc90e;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: popIn 1s ease-out;
  margin: 0 20px;
}
*/
/* Botón de entradas con degradado morado */
/*
.ticket-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #8A2BE2, #9400D3);
  color: white;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ticket-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.logo a {
  display: inline-block;
  text-decoration: none;
  border: none;
  /*background: linear-gradient(135deg, #0e961b, #1bbb23);*/
padding: 5px;
/* Ajusta el grosor del "borde" degradado */
border-radius: 15px;
/* Asegúrate de que sea igual o mayor que el de la imagen 
}
.logo a img {
  display: block;
  width: 120px;
  height: auto;
  border-radius: 10px; /* Puedes ajustar para que se vea armonioso 
}

.contImg{
  gap: 20px;
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.insta-logo:hover,
.tiktok-logo:hover,
.linkedin-logo:hover {
  transform: scale(1.2); /* un 20% más grande 
}
.insta-logo {
  width: 25px;
  height: 25px;
}
.tiktok-logo{
  transform: translateY(0px);
  width: 25px;
  height: 25px;
}
.linkedin-logo{
  transform: translateY(0px);
  width: 26px;
  height: 26px;
}
/* Media Queries para pantallas pequeñas 
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header .logo img {
    width: 100px;
    margin-bottom: 10px;
  }

  header .banner-title {
    font-size: 2rem;
    margin: 10px 0;
  }

  .ticket-box {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  header .banner-title {
    font-size: 1.5rem;
  }

  .ticket-box {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* =====================================
NAVEGACIÓN
======================================== 
/* Estilos generales para el nav 
nav {
  background: linear-gradient(135deg, #0d0a09, #181305);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav .container {
  display: flex;
  justify-content: center;
  gap: 200px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  font-family: "Raleway", serif;
  font-size: 3px; /* Cambiado aquí 
  text-align: center; /* Añadido aquí 
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #000;
}

/* Estilo para el icono de hamburguesa (oculto por defecto) 
nav .menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

nav .menu-icon span {
  background-color: white;
  height: 4px;
  width: 30px;
  margin: 5px 0;
}

/* Media query para dispositivos móviles 
@media (max-width: 600px) {
  nav {
    position: relative; /* Añadimos esto para contener el menú desplegable 
    padding-bottom: 0; /* Eliminamos el padding inferior para que el menú desplegable quede pegado 
  }

  nav .container {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    flex-direction: column;
    text-align: center;
    background-color: #181305;
    position: relative; /* Cambiamos de absolute a relative 
    top: auto; /* Eliminamos el posicionamiento absoluto 
    left: auto;
    padding: 0;
    z-index: 100;
    transition: max-height 0.3s ease-in-out;
    margin-top: 15px; /* Añadimos margen superior para separarlo del menú principal 
    border-radius: 0 0 25px 25px; /* Añadimos bordes redondeados abajo 
  }

  nav .container a {
    display: block;
    padding: 15px;
    border-radius: 0; /* Eliminamos bordes redondeados en móvil 
  }

  nav .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: auto; /* Alineamos el icono a la derecha 
    margin-right: 15px; /* Añadimos margen derecho 
  }
  
  nav .container.active {
    max-height: 300px;
    padding: 10px 0;
  }
}

*/


/* =====================================
SECCIÓN HEROES
======================================== */
/*
#heroes {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 90vh;
  color: white;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

#heroes h1 {
  font-family: 'Bangers', cursive;
  color: #FFD700;
  -webkit-text-stroke: 2px #000;
  text-shadow: 3px 3px 0 #FF4500, 6px 6px 0 #000;
  font-size: 4em;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFF;
  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  animation: comicPop 1.5s ease-out 0.5s;
}

@keyframes comicPop {
  0% {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

#heroes button {
  font-family: 'Bangers', cursive;
  font-size: 1.75em;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 10px;
  border: 3px solid #000;
  background-color: #c25c37ef;
  color: #472020;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0 #000;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

#heroes button:hover {
  background-color: #FF6347;
  transform: translateY(-5px);
  box-shadow: 7px 7px 0 #000;
}

#heroes button:active {
  transform: translateY(0);
  box-shadow: 5px 5px 0 #000;
}
*/
/* Iconos en la sección de héroes */
/*
.iconos-hero {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}

.iconos-hero .icono {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.iconos-hero .icono i {
  font-size: 1.5em;
  color: #FFD700;
}
*/
/* Responsive en la sección heroes */
/*
@media (max-width: 768px) {
  #heroes h1 {
    font-size: 2.5em;
    padding: 8px 16px;
  }

  #heroes button {
    font-size: 1.25em;
    padding: 10px 20px;
    margin-top: 30px;
  }

  .iconos-hero {
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
  }

  .iconos-hero .icono {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  #heroes h1 {
    font-size: 2em;
  }

  #heroes button {
    font-size: 1em;
    padding: 8px 16px;
  }

  .iconos-hero .icono {
    font-size: 0.9em;
  }
}


/* =====================================
SECCIÓN SOMOS OTAKUFEST
======================================== */
/*
#somos-otakufest .container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 100px 20px;
}

#somos-otakufest .img-container {
  background-image: url("img/otakufest.jpg");
  background-size: cover;
  background-position: center center;
  height: 400px;
  width: 50%;
  border-radius: 15px;
}

#somos-otakufest .texto {
  font-family: 'Anton', sans-serif;
  width: 50%;
  max-width: 600px;
  text-align: initial;
  padding-left: 30px;
}*/

/* Responsive sección somos Otakufest */
/*
@media (max-width: 768px) {
  #somos-otakufest .container {
    flex-direction: column;
    padding: 50px 20px;
  }

  #somos-otakufest .img-container {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }

  #somos-otakufest .texto {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #somos-otakufest .img-container {
    height: 200px;
  }

  #somos-otakufest .texto h2 {
    font-size: 2em;
  }

  #somos-otakufest .texto p {
    font-size: 1em;
  }
}
*/
/* =====================================
SECCIÓN NUESTROS EVENTOS
======================================== */
/*
#nuestros-eventos {
  font-family: 'Anton', sans-serif;
  background-color: rgb(30, 30, 30);
  color: blueviolet;
  text-align: center;
  padding: 100px 20px;
  text-shadow:
    -2px -2px 0 white,
    2px -2px 0 white,
    -2px 2px 0 white,
    2px 2px 0 white;
}

#nuestros-eventos h2 {
  margin-bottom: 50px;
}

#nuestros-eventos .programas {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#nuestros-eventos .carta {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 300px;
  height: 400px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flow-root;
  justify-content: center;
}

#nuestros-eventos .carta:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

#nuestros-eventos .carta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#nuestros-eventos .carta-contenido {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
}

#nuestros-eventos .carta-contenido h3 {
  margin-bottom: 15px;
  font-size: 1.8em;
  color: rgb(236, 226, 83);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#nuestros-eventos .carta-contenido p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
*/
/* Ocultar checkbox para información */
/*
.toggle-checkbox {
  display: none;
}*/

/* Botón de "Más información" */
/*
.toggle-button {
  font-family: 'Bangers';
  display: inline-block;
  background: linear-gradient(45deg, rgb(233, 168, 48), rgba(79, 8, 126, 0.589));
  color: rgb(106, 28, 126);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  overflow: hidden;
  text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
}

.toggle-button:hover {
  background-color: rgb(101, 33, 165);
}
*/
/* Ocultar información inicialmente */
.info-text {
  display: none;
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Mostrar información cuando se marca el checkbox */
.toggle-checkbox:checked~.info-text {
  display: block;
}

/* =====================================
SECCIÓN HORARIO
======================================== */
/*
#horario {
  padding: 100px 20px;
  text-align: center;
}

#horario ul {
  margin-top: 20px;
}

#horario li {
  margin: 10px 0;
}
*/
/* =====================================
SECCIÓN GALERÍA
======================================== */
#galeria {
  background-color: white;
  color: black;
  padding: 75px 20px;
  text-align: center;
  margin-top: -40px;
}

#galeria h1 {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

#galeria .line {
  background: #550b51;
  height: 5px;
  width: 100px;
  margin: 0 auto 40px;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 600px) {
  #galeria {
    padding: 50px 5px;
  }

  #galeria h1 {
    font-size: 28px;
  }

  #galeria .line {
    width: 60px;
    height: 3px;
    margin-bottom: 25px;
  }

  .grid-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 5px;
  }

  .gallery-item {
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  }
}
/* =====================================
SECCIÓN RECINTOS
======================================== */
/*
#recintos {
  background-color: rgb(30, 30, 30);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#recintos .player-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#recintos .player-container {
  flex: 1;
  background: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

#recintos .player-container iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 5px;
}

#recintos .player-container h2 {
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Anton', sans-serif;
}

@media (max-width: 768px) {
  #recintos .player-wrapper {
    flex-direction: column;
  }
}
*/
/* =====================================
FOOTER
======================================== */
/*
footer {
  background-image: linear-gradient(to right,  #0d0a09, #181305);
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  width: 100%;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-section {
  display: inline-block;
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-family: 'Glacial Indifference', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ebc90e;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: popIn 1s ease-out;
  margin: 0 20px;
  
}

.footer-section p {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FF6347;
}
*/
/* Contenedor principal de los íconos */
/*
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;  /* Añade un espacio entre los íconos */
/*
}*/

/* Ajusta el tamaño de los contenedores individuales de cada red social */
/*
.tiktok-footer {*/
/*
  width: 40px; /* Establece un tamaño fijo para todos los contenedores 
  height: 40px; /* Establece un tamaño fijo para todos los contenedores 
}
.linkedin-footer {
  width: 37px;
  height: 37px;
  bottom: 20px;
}
.insta-footer{
  width: 40px; 
  height: 40px; 
}

/* Ajusta el tamaño de las imágenes de los íconos 
.social-links img {
  width: 100%;  /* Hace que la imagen ocupe el 100% del tamaño del contenedor */
/*height: 100%; */
/* Ajusta la altura proporcionalmente 
  transition: transform 0.3s ease;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='yellow' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#navbarNavDropdown{
  display: flex;
  align-items: center;
}*/
/* Efecto hover */
/*
.social-links img:hover {
  transform: scale(1.2); /* Aumenta el tamaño al hacer hover */
/*
}


.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
  max-width: 300px;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #8A2BE2;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #9400D3;
}

.legal-links {
  list-style: none;
  padding: 0;
}

.legal-links li {
  margin: 10px 0;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #ffffff;
}

.modalContainer {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  border-radius: 8px;
  position: relative;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
.close:hover { color: #000; }


/* Responsive Footer */
/*
@media (max-width: 768px) {
  
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
  }
}
*/
/* =====================================
LIGHTBOX
======================================== */
/*
.light-box {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.light-box img {
  width: 75vw;
  max-height: 70vh;
}

.light-box:target {
  transform: scale(1);
}

.close {
  display: block;
  position: absolute;
  top: 40px;
  right: 40px;
  background: #851919;
  color: #fff;
  text-decoration: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.next {
  display: block;
  background: #851919;
  color: #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
}


*/
/* =====================================
Reproductores de video y audio
======================================== */
/*
.player-container {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  width: 100%;
}

.player-container h2 {
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Anton', sans-serif;
}

.player-container iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 5px;
}
*/
/* =====================================
Fuentes Personalizadas
======================================== */
/*
@font-face {
  font-family: 'Kamikaze 3D Gradient Italic';
  src: url('fonts/Kamikaze3DGradient-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
*/

/*Extraido de Proyecto - copia.html*/
/*
    body {
      background-color: #bcbcbc;
    }*/

.hero {
  background: url('https://via.placeholder.com/1500x200') no-repeat center center;
  background-size: cover;
  color: black;
  padding: 100px 0;
  text-align: center;
}

#impacto {
  font-weight: bold;
  background: rgba(96, 4, 4, 0.5);
  border-radius: 10px;
  justify-content: space-around;
}

section button {
  width: 7px;
  height: 70px;
  top: 5%;
  margin-top: 35px;
  border-radius: 10px;
}

section p {
  padding: 12px;
  color: aliceblue;
  font-weight: 100;
}

.caja {
  font-weight: bold;
  background: rgba(94, 86, 86, 0.775);
  border-radius: 10px;
  justify-content: space-between;
  color: white;
}

#caja2 {
  display: none;
}

#causas {
  font-weight: bold;
  background: rgba(96, 4, 4, 0.5);
  border-radius: 10px;
  justify-content: space-around;
  margin-top: 5%;
}

#soluciones {
  font-weight: bold;
  background: rgba(96, 4, 4, 0.5);
  border-radius: 10px;
  justify-content: space-around;
  margin-top: 5%;
}

#contacto {
  font-weight: bold;
  background: rgba(96, 4, 4, 0.5);
  border-radius: 10px;
  justify-content: space-around;
  margin-top: 5%;
}

.footer {
  background-color: #343a40;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

#carouselExampleControls {
  visibility: hidden;
}

@media (max-width: 980px) {

  #caja {
    font-weight: bold;
    background: rgba(94, 86, 86, 0.775);
    border-radius: 10px;
    justify-content: space-between;
    margin-top: 10px;
  }

  #contenedor-normal {
    visibility: hidden;
  }

  #carouselExampleControls {
    visibility: visible;
    display: block !important;
  }

  .caja2 {
    display: block;
    background: rgba(94, 86, 86, 0.775);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    margin: 10px;
  }

}

/* ====== NAVBAR GENERAL ====== */
/*
    .navbar {
      background-color: #0d0d0d;
      padding: 20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .navbar-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .navbar-socials,
    .social-icons {
      display: flex;
      gap: 10px;
      font-size: 20px;
    }

    .navbar-light .social-icons i {
      color: white !important;
    }

    .navbar-title {
      text-align: center;
      font-size: 2.8rem;
      color: #f1c40f;
      font-family: 'Georgia', serif;
      font-weight: bold;
      margin: 20px 0;
    }

    .collapse .navbar-collapse {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar-nav {
      display: flex;
      justify-content: space-around;
      gap: 20px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-brand {
      color: white;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-brand:hover {
      color: #007bff;
    }

    .nav-item.dropdown {
      position: relative;
    }

    .dropdown-menu {
      top: 100%;
      left: 0;
      margin-top: 0px;
      z-index: 1000;
      min-width: 200px;
      display: none;
      border: 1px solid rgba(0, 0, 0, .15);
      background-color: rgb(80, 66, 66);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
      background-color: rgb(80, 66, 66);
      color: white;
    }

    .dropdown-menu .dropdown-item {
      color: yellow;
      font-size: large;
      padding: 10px 10px;
      white-space: nowrap;
    }

    .dropdown-menu .dropdown-item:hover {
      background-color: #007bff;
      color: white;
    }

    .nav-item {
      display: block !important;
    }

    /* ===== COMPORTAMIENTO HOVER (DESKTOP) ===== */
/*
    @media (min-width: 769px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
      }

      .dropdown-toggle::after {
        display: none !important;
      }
    }

    /* ===== COMPORTAMIENTO CLICK (MÓVIL) ===== */
/*
    @media (max-width: 768px) {
      .dropdown-menu {
        width: 100%;
        margin-top: 0;
        position: static !important;
        box-shadow: none;
      }

      .dropdown-toggle::after {
        display: inline-block !important;
      }

      .navbar-nav {
        flex-direction: column;
        width: 100%;
      }

      .nav-item.dropdown {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .navbar-nav {
        justify-content: center;
        text-align: center;
        width: 100%;
      }

      .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        display: block;
        background-color: white;
      }

      .dropdown-menu .dropdown-item {
        text-align: center;
        color: black;
      }

      .dropdown-menu .dropdown-item:hover {
        background-color: #007bff;
        color: white;
      }

      .navbar-title {
        font-size: 2rem;
      }

      .navbar-top {
        flex-direction: column;
        gap: 10px;
      }

      .navbar-collapse {
        flex-direction: column;
        gap: 10px;
      }
    }
*/
/* ====== ESTILO PARA FORMULARIO LOGIN/REGISTRO ====== */
/*
    body {
      background: linear-gradient(135deg, #d0c3f7, #a6c1ee);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }*/
/*
    .form-container {
      max-width: 400px;
      margin: 60px auto;
      background-color: white;
      padding: 40px 50px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      text-align: center;
    }

    .form-container h2 {
      margin-bottom: 25px;
      color: #333;
      font-size: 28px;
    }

    .input-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .input-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 8px;
      color: #555;
    }

    .input-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    .nav-link-small {
      font-size: 1rem;
    }



    .input-group input:focus {
      border-color: #5a9bf6;
      outline: none;
    }

    button {
      width: 100%;
      padding: 14px;
      background-color: #5a9bf6;
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #498ce0;
    }

    .message {
      margin-top: 15px;
      color: #666;
      font-size: 14px;
    }*/

/* Responsive */
/*
    @media (max-width: 480px) {
      .form-container {
        margin: 40px 20px;
        padding: 30px;
      }
    }*/