/* Asegura que la página ocupe todo el espacio */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  transition: filter 0.3s ease; /* Suaviza el cambio de filtro */
}
header img {
  background: transparent;
  width: 225px;
  text-align: center;
}
.logo-whatsapp{
  width: 30px;
}
.logo-car{
  width: 50px;
}
.product__image {
  transition: transform 0.3s ease; /* Para un efecto suave */
}

.product__image:hover {
  transform: scale(0.9); /* Achica la imagen al 90% de su tamaño original */
}
/* Contenedor del menú */
.menu-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  /* Centra el menú */
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: none;  /* Ocultar el menú por defecto */
  opacity: 0;     /* También ocultar el menú */
  transition: opacity 0.3s ease;
}

/* Hacer visible el menú */
/* Inicialmente ocultamos el menú */
.menu-menu {
  display: none;
}
.menu-menu a {
  margin-left: 5px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  display: block;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffebf7; /* o el color que quieras para el hover */
}


#menu-toggle:checked + .menu-menu {
  display: block; /* Mostrar el menú cuando el checkbox esté marcado */
}

.menu-container.show {
  display: block;
  opacity: 1;
}

.right-stuff {
  display: block; /* Mostramos right-stuff por defecto */
}
#menu-toggle:checked ~ .right-stuff {
  display: none; /* Ocultamos right-stuff cuando se abre el menú */
}


/* Estilos del menú */
.menu ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin: 10px 0;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.menu ul li a:hover {
  background-color: #f0f0f0;
}
ul,
ol {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* Cursor pointer para el menú */
.menu-bar {
  @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
  font-family: 'Dancing Script';
  cursor: pointer;
  color: whitesmoke;
  background-color: transparent;
  font-size: 40px;
  font-weight: bold;

}
header a{
  color: whitesmoke;
}

header .container {
  background: linear-gradient(to right, #be95be, #8c5f8c, #9d4a9b, #be95be);;
} 
.collage:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.menu-bar:hover {
  transform: scale(1.3);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  color: #04724d !important;
  background-color: transparent;
}
.whatsapp {
  display: flex;
  align-items: center;
  gap: 1px; /* espacio entre imagen y texto */
}

.logo-svg{
  width: 70px;
}

.natura {
  position: relative;
  overflow: hidden;
}

.natura::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  height: 1200px;
  transform: translate(-50%, -50%);
  background-image: url("/multiopciones/images/BDImagen/Natura/fondo/fondo.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.7);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.natura > * {
  position: relative;
  z-index: 1;
}

.violetta {
  position: relative;
  overflow: hidden;
}

.violetta::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  height: 1200px;
  transform: translate(-50%, -50%);  
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.7);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  background-image: url("/multiopciones/images/BDImagen/Violetta/fondo/fondo.png");
}

.violetta > * {
  position: relative;
  z-index: 1;
}
.review.elegirnos {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}
.review.elegirnos img {
  width: 40%;
  height: auto;
  object-fit: cover;
}
.review.elegirnos figcaption {
  padding: 1rem;
  text-align: left;
}

.pedido-content {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}
.links-utiles ul {
  list-style: none;
  padding-left: 0;
}
.links-utiles li {
  margin: 10px 0;
}
.links-utiles a {
  color: #5c3d7a;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.links-utiles a:hover {
  color: #9d4a9b;
  text-decoration: underline;
}

.titulo-youtube {
  gap: 15px;
  display: flex !important;
  text-align: center;
  justify-content: center;
}


  @media (max-width: 449px) {
.whatsapp {
  font-size: 10px;
  }
.fa-lg {
  font-size: 2rem;
  margin-bottom: 5px;
}
.menu-bar{
  padding: 20px;
}
strong,
b,
a {
  font-weight: 800;
  font-size: 20px;
  }
}

@media (max-width: 768px) {
  .menu-menu {
    margin-top: 5px;
    display: block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .menu-menu li {
    margin: 5px 0;
  }

  .menu-menu li a {
    color: #333;
    font-size: 18px;
  }

  .menu-bar {
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #9141AC; /* o el color que quieras para el hover */
}
}

