@import url('https://fonts.googleapis.com/css2?family=Century+Gothic&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column; /* Ajuste para que el contenido se organice en columnas */
    justify-content: center;
    align-items: center;
    background-color: #051215;
  }

  .container {
    width: 100%;
    max-width: 800px;
    min-height: 350px; /* Asegura que la galería tenga espacio */
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    transition: all 400ms;
    margin-bottom: 20px;
  }

.card {
  flex: 1;
  position: relative;
  height: auto; /* Mantén auto si es necesario */
  transition: all 400ms;
  cursor: pointer;
  display: flex; /* Añade flexbox para centrar contenido */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}
.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: grayscale(100%); /* Aplica escala de grises por defecto */
  transition: filter 0.3s ease-in-out; /* Suaviza la transición */
}

.card:hover img {
  filter: grayscale(0%); /* Muestra la imagen a color en hover */
}

.card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.card:nth-child(odd) {
  translate: 0 -20px;
}
.card:nth-child(even) {
  translate: 0 20px;
}

.container:hover .card:not(:hover) {
  filter: grayscale(100%);
}
.card:hover {
  flex: 3;
}
/* Nueva sección para el logo */
.logo-container {
  padding-top: 30px; /* Espacio extra arriba para evitar que el logo se corte */
  margin-top: 3 0px; /* Reducimos el margen superior para equilibrar */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px; /* Espacio entre el logo y la galería */
  min-height: 150px; /* Asegura que el contenedor siempre tenga altura suficiente */
}

.logo-container img {
  max-width: 200px; /* Ajusta el tamaño del logo según sea necesario */
  height: auto;
}
  
 /* Estilos para el texto del footer */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #051215;
    color: white; /* Texto blanco */
    font-size: 20px;
  }

  /* Estilos para el texto h1 */
  h1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px; 
    padding-bottom: 30px;
    color: white;
    font-family: 'Century Gothic', sans-serif;
    text-align: center;
    font-size: 25px;
    margin: 0; /* Para eliminar márgenes, si es necesario */
  }
  
  /* Hover para el texto del footer */
  .footer p:hover {
    color: #ff00ff; /* Color rosado fluorescente al pasar el cursor */
  }

  /* Media queries para ajustar la altura de las imágenes en pantallas pequeñas */
@media (max-width: 200px) {
  /* Ajustar la altura de las tarjetas en pantallas pequeñas */
  .card {
    aspect-ratio: 16 / 9; /* Cambia la relación de aspecto en pantallas pequeñas */
  }

  /* Ajustar el margen superior del logo en pantallas pequeñas */
  .logo-container {
    margin-top: 40px; /* Más espacio superior para el logo */
  }

  .footer {
    font-size: 14px; /* Ajusta el tamaño del texto en pantallas pequeñas */
  }
}

/* BOTONES RRSS */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s 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);
}

.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 .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.facebook {
  --color: #1877f2;
}
.twitter {
  --color: #1da1f2;
}
.instagram {
  --color: #e4405f;
}
.pinterest {
  --color: #c8232c;
}
.youtube {
  --color: #cd201f;
}

.icon:hover,
.icon:hover .tooltip,
.icon:hover .tooltip::before {
  background: var(--color);
  color: white;
}
/* FIN BOTONES RRSS */

/* NOTIFICACIONES PUSH */
#notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fade-in 1s forwards;
}

.notification img {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
}

.notification .content {
  padding: 15px;
}

.notification .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e91e63;
  margin-bottom: 5px;
}

.notification .description {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

.notification .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 10px;
  background: #f9f9f9;
}

.notification .close-btn {
  background: #aaa;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.notification .more-link {
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.notification .more-link:hover {
  text-decoration: underline;
}

/* Animación de aparición */
@keyframes fade-in {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Animación de desvanecimiento */
.fade-out {
  animation: fade-out 1s forwards;
}

@keyframes fade-out {
  0% {
      opacity: 1;
      transform: translateY(0);
  }
  100% {
      opacity: 0;
      transform: translateY(-20px);
  }
}

/* banners marcas */
#banners-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  clear: both; /* Evita que se superponga con la galería */
}

.banner img {
  width: 100%; /* Ocupar todo el ancho disponible */
  max-width: 800px; /* No más ancho que la galería */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.banner img:hover {
  transform: scale(1.05);
}