* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  list-style: none;
}
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Espacio entre los elementos */
  margin: 20px 0; /* Espaciado superior e inferior */
}

.info-card {
  background-color: #ffffff; /* Color de fondo de la tarjeta */
  border: 1px solid #e0e0e0; /* Borde de la tarjeta */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Sombra de la tarjeta */
  padding: 20px; /* Espaciado interno */
  margin: 15px; /* Espaciado entre tarjetas */
  text-align: center; /* Centrar texto */
  flex: 1 1 calc(30% - 30px); /* Ancho de las tarjetas cuadradas */
  box-sizing: border-box; /* Incluye el padding y el borde en el ancho total */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave para efectos */
}

.info-card.rectangular {
  flex: 1 1 calc(100% - 30px); /* Ancho de la tarjeta rectangular */
  height: 200px; /* Altura fija para la tarjeta rectangular */
}

.info-card:hover {
  transform: scale(1.05); /* Aumentar el tamaño de la tarjeta al pasar el mouse */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más intensa al pasar el mouse */
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Espacio entre los elementos */
  margin: 20px 0; /* Espaciado superior e inferior */
}

.team-member {
  background-color: #ffffff; /* Color de fondo de la tarjeta */
  border: 1px solid #e0e0e0; /* Borde de la tarjeta */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Sombra de la tarjeta */
  padding: 20px; /* Espaciado interno */
  margin: 15px; /* Espaciado entre tarjetas */
  text-align: center; /* Centrar texto */
  flex: 1 1 calc(30% - 30px); /* Ancho de las tarjetas */
  box-sizing: border-box; /* Incluye el padding y el borde en el ancho total */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave para efectos */
}

.team-member:hover {
  transform: scale(1.05); /* Aumentar el tamaño de la tarjeta al pasar el mouse */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más intensa al pasar el mouse */
}

.team-image {
  width: 80%; /* Ancho de la imagen */
  height: auto; /* Mantener la proporción de la imagen */
  border-radius: 50%; /* Bordes redondeados para imágenes circulares */
  margin-bottom: 15px; /* Espaciado inferior de la imagen */
  border: 3px solid #0ABBB5; /* Borde azul alrededor de la imagen */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra de la imagen */
  transition: transform 0.3s ease; /* Transición suave para la imagen */
}

.team-member:hover .team-image {
  transform: scale(1.1); /* Aumentar el tamaño de la imagen al pasar el mouse */
}

.team-member h3 {
  color: #0ABBB5; /* Color del encabezado */
  margin: 10px 0; /* Espaciado superior e inferior */
  font-weight: bold; /* Negrita para el nombre */
  font-size: 1.2em; /* Tamaño de fuente aumentado */
  transition: color 0.3s ease; /* Transición suave para el color */
}

.team-member:hover h3 {
  color: #007BFF; /* Cambiar color del encabezado al pasar el mouse */
}

.team-member p {
  color: #555; /* Color del texto */
  line-height: 1.6; /* Espaciado entre líneas */
  font-size: 1em; /* Tamaño de fuente */
  transition: color 0.3s ease; /* Transición suave para el color */
}

.team-member:hover p {
  color: #0ABBB5; /* Cambiar color del texto al pasar el mouse */
}

.popup {
  display: none; /* Ocultar por defecto */
  position: fixed; /* Fijo en la pantalla */
  z-index: 1000; /* Por encima de otros elementos */
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Alto completo */
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

.popup-content {
  background-color: #fff; /* Fondo blanco */
  margin: 15% auto; /* Margen superior e inferior */
  padding: 20px; /* Espaciado interno */
  border-radius: 5px; /* Bordes redondeados */
  width: 80%; /* Ancho del pop-up */
  max-width: 500px; /* Ancho máximo */
}

.close {
  color: #aaa; /* Color del botón de cerrar */
  float: right; /* Alinear a la derecha */
  font-size: 28px; /* Tamaño de fuente */
  font-weight: bold; /* Negrita */
}

.close:hover,
.close:focus {
  color: black; /* Color al pasar el mouse */
  text-decoration: none; /* Sin subrayado */
  cursor: pointer; /* Cambiar cursor */
}
adawdaw
/*Estilo de letra de Google Fonts */   
  .tagesschrift-regular {
    font-family: "Tagesschrift", system-ui;
    font-weight: 400;
    font-style: normal;
  }

  .habibi-regular {
    font-family: "Habibi", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  
.merriweather-uniquifier{
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 400; 
  font-style: normal;
  font-variation-settings: "wdth" 100; 
}


body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ----------------------- HEADER ----------------------- */

    .header-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 3rem;
    /*background-color: rgb(163, 238, 253);*/
    background-color:#00796b;
}

#logo {
  width: 6rem;
  height: 6rem;
  margin: 30px 0;
  border-radius: 50%;
  box-shadow: 0 0 30px rgb(255, 255, 255);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.logo-circular {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
}
/*------------------Contenido de la Barra de Navegación-----------------*/
   .menu 
   { display: flex;
     align-items: center;
     justify-content: flex-end; /* Todo alineado a la derecha */
     position: relative;
     padding: 1rem;
     z-index: 3; /*Posicion del menu va a estar por delante de 3 capas*/}

     
   .menu .navbar ul li 
   { float: left;/* Esto permite al menú acomodarse en fila. */}

   .menu .navbar 
   { display: none;
    flex-direction: column;
    background-color: #000000a3;
    position: absolute;
    top: 100%; /* Justo debajo del menú */
    right: 0;
    width: 16rem;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;}

   .menu .navbar.open 
   { display: flex;}


   .menu .navbar ul li a 
   { text-decoration: none;
     font-size: 15px; /* este font-size: 15px es para el tamaño de los enlaces superiores */
     padding: 20px;
     color: rgba(255, 255, 255, 0.954);
     display: block;
     font-weight: 600;
     font-family: "Tagesschrift", system-ui;}

   .menu ul li a.activo /*Esto es para que en el menu de hamburguesa salga una franja de cual link esta activo*/
   { color: rgb(23, 221, 165);
     font-weight: bold;
    border-bottom: 5px solid rgb(255, 255, 255);}


   .menu .navbar ul li a:hover /* este apartado es igual al anterior solo que con hover el cual permite como un sombreado en el menú con el cursor */
   { color: #10efdc;}

/*--------------------Estilos Menu Hamburguesa------------------*/
  
   .hamburger 
   { display: none; /*display:none lo deshabilita el menu de hamburguesa no se ve visualmente*/
     cursor: pointer; /*Es para que tenga un diseño bonito el cursos cuando te acercas al menu hamburguesa*/
     position: absolute;
     left: 2.5rem;}

@media (max-width: 991px) {
     /*--------------------HEADER Y NAV-----------------------*/
.header-contenido 
{height: 7rem;}

  #logo
  { width: 4.5rem;
    height: 4.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;}

    .hamburger 
      { display: block; 
        color: rgba(255, 255, 255, 0.978);
        font-size: 20px;
        margin-left: auto;}

    .menu .navbar ul 
    { flex-direction: column;
      padding: 0;
      margin: 0;}

      .menu .navbar ul li 
      { float: none;
        text-align: center;

    .menu .navbar ul li a 
     {padding: 10px;
        color: white;
        border-top: 1px solid #555;}}
}

@media (min-width: 992px) {
  .menu .navbar {
    display: flex !important;
    position: static;
    flex-direction: row;
    background-color: transparent;
    width: auto;
    
  }

  .menu .navbar ul {
    flex-direction: row;
  }

  .menu .navbar ul li {
    float: left;
  }

  .menu .navbar ul li a {
    color: rgb(255, 250, 250);
    border: none;
    padding: 20px;
  }

  .hamburger {
    display: none;
  }
}

.hero {
  background: linear-gradient(to right, #e0f7fa, #f0fdfc);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #00796b;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  padding: 12px 30px;
  background-color: #00bfa5;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #009e89;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  color: #00796b;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

footer {
  background-color: #00796b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.social-icons img {
  width: 30px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Botón animado al hacer clic */
@keyframes clickEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}

/*css Footer*/
/*Footer de la pagina*/
/*Estilos de Logo General*/

/* === Footer === */

#pie-pg {
  background-color:#00796b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contenido-pie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.logo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 4px solid white;
}

.redes-sociales h3,
.enlaces h4,
.metodos-pago h3,
.map-ubication h4 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1rem;
}

#iconos-siguenos i,
#iconos-pagos i {
  color: #fff;
  margin: 3px;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

#iconos-siguenos i:hover,
#iconos-pagos i:hover {
  color: #00e5ff;
  transform: scale(1.3) rotate(5deg);
}


.enlaces ul {
  list-style: none;
  padding: 0;
}

.enlaces ul li {
  margin: 5px 0;
}

.enlaces ul li a {
  color: #ccc;
  text-decoration: none;
}

.enlaces ul li a:hover {
  color: #fff;
}

/*chatbot*/
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000000;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  z-index: 9999;
}

#chat-window {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  font-family: 'Quicksand', sans-serif;
  z-index: 9999;
}

#chat-header {
  background: #d63384;
  color: rgb(0, 0, 0);
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

#chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  height: 300px;
  color: #000000;
}

#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#chat-input input {
  flex: 1;
  border: none;
  padding: 10px;
}

#chat-input button {
  background: #d63384;
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px;
}


@media (max-width: 600px) {
  

  .enlaces h4,
  .metodos-pago h3,
  .redes-sociales h3,
  .map-ubication h4 {
    font-size: 1rem;
  }

  #iconos-siguenos i,
  #iconos-pagos i {
    font-size: 1.3rem;
  }
}

