
/* Efecto hover en los enlaces del menú */
/*
.menu-superior a:hover {
  background: #29AB87; 
  color: #fff;
}
*/

/* ===== Reset y Fuente Básica ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sss {
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    /* Eliminamos el background-color y agregamos una imagen de fondo */
    background: "{{ asset('public/img/1.jpg') }}" no-repeat center center fixed;
    background-size: cover; /* Ajusta la imagen para cubrir toda la pantalla */
    min-height: 100vh;
  }

/* Animación para el movimiento del texto */
@keyframes textMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Texto dinámico, descripción de Rioja */
.texto {
  padding: 10px;
  margin: 10px auto;  /* Auto para centrar horizontalmente */
  font-size: 1.2rem; /*tamaño de texto descriptivo rioja*/
  text-align: center;
  
  /* Marco degradado */
  border: 5px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #29AB87, #2ecc71, #3498db, #9b59b6);
  
  /* Animaciones: animación de marco y sutil movimiento vertical */
  animation: borderAnim 5s linear infinite, textMove 2s infinite alternate;
}

/* Animación para el marco degradado (cambia la dirección del degradado) */
@keyframes borderAnim {
  0% {
    border-image-source: linear-gradient(45deg, #29AB87, #2ecc71, #3498db, #9b59b6);
  }
  100% {
    border-image-source: linear-gradient(45deg, #9b59b6, #29AB87, #2ecc71, #3498db);
  }
}

/* Animación para el movimiento del texto */
@keyframes textMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Texto dinámico: "Descubre Rioja" */
.text-header {
  display: inline-block;
  padding: 15px 30px;
  margin: 20px auto;  /* Auto para centrar el bloque */
  border: 4px solid transparent;
  border-radius: 10px;
  font-size: 2rem;
  transition: transform 0.3s ease, border 0.3s ease;
  text-align: center;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #29AB87, #2ecc71, #3498db, #9b59b6) border-box;
}

.text-header h1 {
  margin: 0;
  padding: 0;
  background: -webkit-linear-gradient(45deg, #29AB87, #2ecc71, #3498db, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-header:hover {
  transform: translateY(-5px);
  border: 4px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #29AB87, #2ecc71, #3498db, #9b59b6);
}



/*-------------------------------------------*/

  .footer-center {
    text-align: center;
    flex: 1;
    margin: 10px 0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-center p {
    margin: 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    border: 2px solid #fff;
    border-radius: 20px; /* Bordes redondeados estilo ovalado */
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
  }


  .footer-right a {
    margin-left: 10px;
    font-size: 30px; /* Aumenta el tamaño del icono */
    color: #fff;
    transition: opacity 0.3s;
  }

  .footer-right a:hover {
    opacity: 0.8;
  }

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}
.footer-container {
  /* Elimina max-width y margin: auto para que ocupe todo el ancho */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-left img {
  width: 80px;
  height: auto;
}
.footer-center {
  text-align: center;
  flex: 1;
  margin: 10px 0;
  font-size: 0.9rem;
}
.footer-center p {
  margin: 5px 0;
}




/* Para dispositivos móviles: centrado de todos los elementos */
@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    margin-top: 10px;
  }
}

 /* Animación base para tarjetas */
 .animate-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animate-card:hover {
  transform: scale(1.05); /* Incrementa un 5% su tamaño */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Sombra suave */
}

/* tarjeta numero 1 TURISTICOS ............................................................... */
/* Tarjeta 1: Sitios Turísticos */

/* Estilos generales de la tarjeta */
.tours-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(22, 22, 22, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.tours-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.tours-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.tours-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.tours-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}



/* tarjeta numero 2 MERCADO DE ABASTOS ............................................................... */
/* Tarjeta 2: Mercado de Abastos */

/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.mercado-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.mercado-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.mercado-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.mercado-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.mercado-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}



/* tarjeta numero 3 BANCOS ............................................................... */
/* Tarjeta 3: Bancos ............................................................... */

/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.bank-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.bank-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.bank-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.bank-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.bank-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}


/* tarjeta numero 4 RESTAURANTES ............................................................... */
/* Estilos generales de la tarjeta */
.restaurant-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.restaurant-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.restaurant-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.restaurant-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.restaurant-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}



/* tarjeta numero 5 HOTELES ............................................................... */

/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.hoteles-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.hoteles-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.hoteles-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.hoteles-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.hoteles-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}



/* tarjeta numero 6 TRANSPORTE ............................................................... */
/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.transporte-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.transporte-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.transporte-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.transporte-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.transporte-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}


/* tarjeta numero 7 AUTOMOVILES ............................................................... */
/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.agencia-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.agencia-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.agencia-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.agencia-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.agencia-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}


/* tarjeta numero 8 NUMERO DE EMERGENCIAS */

/* Contenedor de la tarjeta */
/* Estilos generales de la tarjeta */
.emergencia-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Bordes más redondeados */
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra más notoria */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px; /* Espacio interno */
}

/* Contenedor de la imagen para centrarla */
.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  text-align: center;
}

/* Imagen centrada y más pequeña */
.emergencia-card .card-img-top {
  width: 100px; /* Reducido el tamaño de la imagen */
  height: 100px;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  margin: 0 auto; /* Centra la imagen horizontalmente */
}

/* Contenido de la tarjeta */
.emergencia-card .card-body {
  text-align: center;
  padding: 10px;
}

/* Título */
.emergencia-card .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #035d8a;
}

/* Descripción */
.emergencia-card .card-text {
  font-size: 0.9rem;
  color: #666;
}

/* Efecto de sombra y degradado al pasar el mouse */
.animate-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

/* Efecto de degradado */
.animate-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animate-card:hover::after {
  opacity: 1;
}

/* Eliminar subrayado del enlace */
.card-link {
  text-decoration: none;
}



/*Y tu que planes responsive --------------------------*/

.hola {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  flex-wrap: wrap;
  text-align: center;
  color: white; 
}

.titulo {
  font-weight: bold;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 1%;
  font-size: clamp(1rem, 2vw, 1.5rem); /* Hace el texto escalable */
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .hola {
    height: auto;
    flex-direction: column;
  }
}




/*CSS para agregar animacion de carrusel antes del pie de pagina----------------------*/

/* Estilos del carrusel */
.carrusel-container {
  overflow: hidden;
  width: 100%;
  padding: 15px;
}


.carrusel img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Sombra más pronunciada al pasar el mouse */
}

/* Animación de desplazamiento */
@keyframes deslizar {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausar animación al pasar el mouse */
.carrusel-container:hover .carrusel {
  animation-play-state: paused;
}

/* Título */
.titulo-carrusel {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/*Agregar letras sobre la imagen */
.carrusel-container {
  width: 100%;
  overflow: hidden;
   padding: 15px;
}

.carrusel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: deslizar 30s linear infinite;
}

.carrusel img {
  max-width: 200px; /* Ajusta el tamaño de las imágenes */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/*CSS para mantener responsive la img de muni y logo --------------------------------------*/

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Espaciado entre imágenes */
  flex-wrap: wrap;
  text-align: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

/* Tamaños específicos para mantener proporción */
.logo:nth-child(1) img {
  max-width: 150px;
}

.logo:nth-child(2) img {
  max-width: 110px;
}

/* Ajuste en pantallas pequeñas */
@media (max-width: 768px) {
  .logos-container {
    flex-direction: column;
    gap: 10px;
  }
}

/*CSS para agregar animacion al Mision y Vision --------------------------------------*/

      .mision, .vision {
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.2); /* Fondo semitransparente */
        border-radius: 8px;
    }

    .mision h3, .vision h3 {
        font-size: 22px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px; /* Espaciado entre icono y texto */
        text-transform: uppercase;
    }

    .mision p, .vision p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 300;
    }

    .mision i, .vision i {
        font-size: 24px;
        color: #ffcc00; /* Color dorado para los íconos */
    }

/* Colores específicos para cada burbuja */
.mision {
  background-color: #0b4a33; /* Verde oscuro */
}

.vision {
  background-color: #0b364a; /* Azul oscuro */
}

/* Estilo de los textos */
.burbuja h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff; /* Texto blanco */
}

.burbuja p {
  font-size: 1rem;
  color: #ddd; /* Texto gris claro */
  margin: 0;
}


.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/*animacion de puntero sobre iconos*/
.wrapper a:hover {
  transform: scale(1.1);
  box-shadow: 0 1px 10px rgb(229, 225, 225);
}




