*{
    text-align: justify;
    padding: 0;
    margin: 0;
}
p{
    color: #000;
}

/*INICIO LOADER /*
/* Contenedor del loader */
/* Estilo del loader */
/* Estilo del loader */
/* Estilo general y bloqueo del scroll */
body {
  margin: 0;
  overflow: hidden; /* Elimina el scroll durante el loader */
}

/* Estilo del loader */
#loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #d4af37; /* Fondo dorado */
  margin: 0;
}

/* Animación del huevo */
.egg {
  width: 80px;
  height: 110px;
  background-color: #ffffff; /* Huevo blanco */
  border-radius: 50% 50% 45% 45%; /* Forma ovalada */
  animation: bounce 1.5s infinite; /* Rebote */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Sombra elegante */
}

/* Animación y estilo del texto */
.loading-text {
  margin-top: 20px;
  color: #ffffff; /* Texto blanco */
  font-size: 20px;
  font-weight: bold;
  animation: fade 1.5s infinite; /* Parpadeo */
}

/* Animación de rebote */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Animación de opacidad para el texto */
@keyframes fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* FIN LOADER /*
/* Reset básico */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Estilo del NAV */
nav {
    display: grid;
    grid-template-rows: auto auto; /* Dos filas en el grid */
}

/* Parte de arriba */
.top-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineación a la izquierda */
    background-color: white;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para diseño moderno */
}

.top-grid h1 {
    font-size: 36px; /* Tamaño mediano-grande */
    color: #ffa500; /* Color cálido inspirado en huevos */
    font-weight: bold;
    margin: 0;
    font-family: 'Verdana', sans-serif;
    text-transform: uppercase; /* Letras en mayúsculas */
}

/* Parte de abajo */
.bottom-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffc600; /* Fondo amarillo */
    padding: 15px 0;
}

.bottom-grid a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    color: #000; /* Color del texto */
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease; /* Efecto dinámico */
}

.bottom-grid a:hover {
    color: #333;
    transform: scale(1.1); /* Efecto de ampliación al pasar el cursor */
}


/* FIN DEL STYLE NAV */

/* INICIO DE LA SECTION 1 INDEX */
#banner2 {
    width: 100%; /* Ocupa el ancho completo del contenedor */
    max-width: 800px; /* Tamaño máximo */
    height: auto; /* Mantiene las proporciones */
    margin: 0 auto; /* Centra la imagen en su contenedor */
    object-fit: cover; /* Ajusta el contenido para no deformar la imagen */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

/* Efecto de zoom al pasar el puntero */
#banner2:hover {
    transform: scale(1.05); /* Aumenta el tamaño un 5% */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Sombra más intensa al hacer hover */
}



/* FIN DE LA SECTION 1 INDEX */

/* CARROUSEL INCIIO */

.carousel-container {
    width: 80%;
    margin: 30px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .carousel-image {
    width: 100%;
    height: 400px; /* Establece una altura uniforme */
    object-fit: cover; /* Asegura que la imagen se adapte sin distorsión */
    border-radius: 8px;
  }
  

/* FIN DE CARROUSEL */

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  height: 100vh; /* Ocupa toda la altura de la ventana */
}

.main-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 20px 0;
  color: #333;
}
.map, .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen sin distorsión */
}

.full-screen-image {
  width: 100%;
  height: 100vh; /* Ocupa toda la altura de la ventana */
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen se ajuste sin deformarse */
}


/* Media Queries para dispositivos pequeños */
@media (max-width: 768px) {
  .full-width-image {
    height: 70vh; /* Altura ajustada en pantallas más pequeñas */
  }

  .overlay h1 {
    font-size: 2rem; /* Tamaño de texto reducido */
  }

  .overlay p {
    font-size: 1rem;
  }
}

/* Media Queries para dispositivos muy pequeños (móviles) */
@media (max-width: 480px) {
  .overlay {
    padding: 15px;
  }

  .overlay h1 {
    font-size: 1.5rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }
}


/* INICIO DEL STYLE FOOTER */

footer {
    position: relative;
    width: 100%;
    background: #d4af37;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  
  .social-icon2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 5px;
    flex-wrap: wrap;
  }
  
  .icon-elem2{
    list-style: none;
  }
  
  .icon2 {
    color: white;
    font-size: 32px;
    display: inline-block;
    margin: 0 10px;
    transition: 0.5s;
  }
  
  .icon2:hover {
    transform: translateY(-10px);
  }
  
  .menu2 {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .menu-elem2{
    list-style: none;
  }
  .menu-icon2 {
    color: white;
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    margin: 5px 10px;
    opacity: 0.5;
    transition: 0.3s;
  }
  
  .menu-icon2:hover {
    opacity: 1;
  }
  
  .text2 {
    color: white;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  /* FIN DEL STYLE FOOTER */

  /* INICIO DE MEDIAQUERE */

/* Media Queries para pantallas más pequeñas */

/* Para dispositivos móviles (pantallas de hasta 768px) */
@media screen and (max-width: 768px) {
  body {
      overflow: auto; /* Permitir scroll si es necesario */
  }

  .top-grid h1 {
      font-size: 28px; /* Ajustar tamaño de la fuente */
  }

  .bottom-grid a {
      font-size: 14px; /* Reducir tamaño del texto */
      margin: 0 10px; /* Ajustar margen */
  }

  #banner2 {
      max-width: 100%; /* Ocupa todo el ancho disponible */
      border-radius: 5px; /* Bordes más pequeños */
  }

  .carousel-container {
      width: 100%; /* Ocupa todo el ancho de la pantalla */
  }

  .carousel-image {
      height: 300px; /* Reducir altura para pantallas pequeñas */
  }

  footer {
      padding: 15px 30px; /* Ajustar espacio */
  }

  .icon2 {
      font-size: 24px; /* Reducir tamaño de iconos */
  }

  .menu-icon2 {
      font-size: 16px; /* Reducir tamaño del texto */
  }

  .text2 {
      font-size: 16px; /* Reducir tamaño del texto */
  }
}

/* Para dispositivos muy pequeños (pantallas de hasta 480px) */
@media screen and (max-width: 480px) {
  .top-grid h1 {
      font-size: 22px; /* Reducir aún más tamaño de la fuente */
  }

  .bottom-grid a {
      font-size: 12px; /* Reducir tamaño del texto */
      margin: 0 5px; /* Reducir márgenes */
  }

  .carousel-image {
      height: 200px; /* Ajustar altura de las imágenes */
  }

  footer {
      padding: 10px 20px; /* Reducir espacio */
  }

  .text2 {
      font-size: 14px; /* Ajustar tamaño del texto */
  }
}

#bubble-container2 {
  display: grid;
  justify-content: center;
  align-items: center;
  width: 94%; /* Ajusta el ancho de la burbuja */
  padding: 20px;
  border-radius: 25px; /* Bordes redondeados */
  background-color: #daec86dc; /* Fondo claro */
  box-shadow: 0 4px 6px rgba(135, 156, 15, 0.747); /* Sombra inicial */
  transition: box-shadow 0.3s ease; /* Suavidad en el sombreado */
  margin:10px; /* Centra la burbuja */
  overflow: hidden; /* Asegura que el contenido permanezca dentro de la burbuja */
  color: darkgoldenrod;
  text-align: center;
}
#bubble-container2:hover {
  box-shadow: 0 8px 12px rgba(135, 156, 15, 0.747); /* Sombra más marcada */
}

#bubble-container2 {
  display: grid;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  width: 94%; /* Asegura que el contenedor ocupe el 100% del espacio disponible */
  height: 400px;
  padding: 20px;
  text-align: center; /* Centra el texto dentro del contenedor */
}
/* FIN DE MEDIAQUERE */


/* INICIO DIVICION FONDO EMPRENDER */


/* Estilos globales */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
}
.section {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section img {
  width: 40%;
  border-radius: 12px;
}
.text-content {
  padding: 0 20px;
}
.text-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #333;
}
.text-content p {
  margin: 0;
  font-size: 16px;
  color: #666;
}

/* Media Queries para dispositivos más pequeños */
@media (max-width: 768px) {
  .section {
      flex-direction: column;
      text-align: center;
  }
  .section img {
      width: 100%;
      margin-bottom: 15px;
  }
  .text-content {
      padding: 0;
  }
}

@media (max-width: 480px) {
  .text-content h2 {
      font-size: 20px;
  }
  .text-content p {
      font-size: 14px;
  }
}


/* FIN DIVICION FONDO EMPRENDER */