@charset "UTF-8";
/* Contenedor principal de las tarjetas */
.tarjetas {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

/* Contenedor de tarjetas */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Tarjeta */
.card {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  background: #f0f0f0; /* Color gris inicial */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  position: relative;
}

/* Efecto hover: cambia de color */
.card:hover {
  transform: scale(1.05);
  background: white; /* Cambia a blanco */
}

/* Imagen dentro de la tarjeta */
.card-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Contenido de la tarjeta */
.card-img-overlay {
  padding: 15px;
  color: white;
  flex-grow: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
}

/* Título */
.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Descripción */
.card-text {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Lista desplegable */
.card-items {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  opacity: 0; /* Ocultar inicialmente */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Ítems dentro del menú desplegable */
.card-items li {
  padding: 10px;
  border: 1px solid #bbb; /* Borde gris */
  background: white; /* Fondo inicial */
  transition: background 0.3s ease-in-out;
  text-align: center;
}

/* Efecto hover en los ítems */
.card-items li:hover {
  background: #e0e0e0; /* Cambia de blanco a gris */
}

/* Mostrar la lista cuando se pasa el mouse sobre la tarjeta */
.card:hover .card-items {
  opacity: 1;
  max-height: 150px;
}

/*efecto glass (vidrio) */
.glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: white;
  padding: 2rem;
}

/* Footer */
footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: white;
}
footer .social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer .social a img {
  width: 30px;
  transition: transform 0.3s ease-in-out;
}
footer .social a img:hover {
  transform: scale(1.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.4rem;
  background: white;
  height: 130px;
}
header .imgnav {
  width: 200px;
  justify-self: start;
  align-self: start;
}
header nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 1rem;
  padding: 0;
}
header nav ul li a {
  text-decoration: none;
  justify-content: center;
  color: orange;
  font-family: "Font Awesome 5 Free";
  font-size: 1.5rem;
  transition: color 0.3s;
}
header nav ul li a:hover {
  color: rgb(173, 165, 165);
}

/* Contacto */
.fondo-img {
  position: fixed; /* Mantiene el fondo estático */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ajusta la imagen al tamaño del contenedor */
  z-index: -1; /* Envía la imagen al fondo */
}

.contenedor-principal {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.contenido {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.titulo-contacto {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 20px;
  text-align: center;
}

.contacto-info {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contacto-info a {
  color: #636161;
  text-decoration: none;
  font-weight: bold;
}

.contacto-info a:hover {
  color: rgba(224, 103, 27, 0.7019607843);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e97d1e;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border: none;
  transition: background 0.3s ease-in-out;
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.whatsapp-button:hover {
  background: rgb(246, 219, 170);
}

.mapa-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

/* Footer */
footer {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin-top: 50px;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
}

.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social a img {
  width: 30px;
  transition: transform 0.3s ease-in-out;
}

.social a img:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=contacto.css.map */