*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Century Gothic';
    font-size: 20px;
}
body{
    background-color: var(--bg-primario);
    width: 100%;
    height: 100%;
}

.menu{
    width: 100%;
    position: fixed;
    z-index: 100000;
    .menu-desplegable{
        height: 45px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        list-style-type: none;
        background-color: var(--bg-menu);
        position: fixed;
        width: 100%;
               
    }
    a{
        text-decoration: none;
        color: var(--texto-secundario);
        font-weight: bolder;
        height: 100%;
        display: flex;
    }
}
    p{
      color: var(--texto-secundario);
    }
    h2,h3{
      color: var(--texto-secundario);
    }
    ul,ol{
      li{
        color: var(--texto-secundario);
      }
    }

#m, label{
    display: none;
}
label{
  font-size: 25px;
  font-weight: bolder;
  color: var(--bg-secundario2);
  margin-left: 10px;
  border-radius: 3px;
  &:hover{
    cursor: pointer;
  }
}

/*ESTILO COMUN SECCIONES*/

#pie-de-pagina{
  padding-top: 30px;
  h3{
    background-color: var(--bg-secundario);
    text-align: end;
    padding-right: 30px;
    padding-top: 20px;
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
  ul{
    background-color: var(--bg-secundario);
    text-align: end;
    li{
      padding-right: 50px;
    }
    padding-bottom: 30px;
  }
}

section{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: var(--bg-secundario);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  margin-bottom: 50px;
  top: 80px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  text-align: left;

  h1{
    display: inline-block;
    color: var(--texto-secundario2);
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
  h2{
    margin-bottom: 5%;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }
  h3{
    margin-bottom: 3%;
    margin-top: 3%;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  }

  p, li{
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }

  h4{
    color: var(--texto-secundario2);
  }

    section{
      background-color: var(--bg-secundario2);
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      &:hover{
        transform: translateY(-10px);
      }
  }
  ul, ol{
     margin-left: 30px;
      margin-top: 20px;
      li{
          margin-bottom: 20px;
      }
      &:last-child{
          margin-bottom: -10px;
      }
  }
}
#logo{
    display: flex;
    position: fixed;
    z-index: 2;
    bottom: 20px;
    left: 0.5%;
    img{
      width: 25%;
      background-color: var(--bg-primario);
    }
  }

/*QUIENES SOMOS*/

#quienes{
  .fotogrupal{
    img{
      width: 100%;
      margin-top: 10px;
      margin-bottom: -50px;
      border-radius: 30px;
      position: relative;
      display: flex;
      flex: 0 1 1200px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
  }
}
.quienes{
  a{
    text-decoration: none;
    color: var(--texto-secundario);
  }
  .ubi {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
}
        

@keyframes desplazar {
    from{transform: translateX(-50px); opacity: 0;}
    to{transform: translateX(0px); opacity: 1;}
}
/*INTRODUCCION*/
.contenedor{
    position: relative;
    display: flex;
    flex: 0 1 1000px;
    max-width: 1000px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
      .texto{
        color: var(--bg-secundario);
      }
    .footer{
      border-radius: 30px;
      filter: brightness(0.5);
      width: 100%;
      display: block; 
      opacity: 1; 
      transition: 0.5s ease;
 }
}

 .monigote{
  opacity: 0;
  transition: 0.5s ease;
 
 }
  .monigote img{
    position: absolute;
    top: 43%;
    left: 18%;
    display: block;
    width: 30%;
    box-sizing: border-box;
    transform: none;
    transition: 0.5s ease;
  }

 .contenedor:hover .footer {
    opacity: 0.3;
    filter: blur(1px);
 }
 .contenedor:hover .texto{
    opacity: 1;
    
 }
 .contenedor:hover .monigote{
    opacity: 1;
 }

 .texto {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150%;
  font-weight: bold;
  opacity: 0;
  transition: 0.5s ease;
  background-color: var(--bg-secundario2);
  padding: 20px;
  padding-bottom: 80px;
  clip-path: polygon(0 0, 100% 0%, 100% 75%, 61% 75%, 27% 98%, 36% 75%, 0% 75%);

  p{
    color: var(--texto-secundario2);
  }
}

#titulointro h1{
    padding: 5%;
}
 .intro {
  text-align: center;
  padding: 50px 20px;
}

.intro h2 {
  margin-bottom: 40px;
}

.beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: var(--bg-secundario);
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px 0;
}

.card p {
  padding: 0 15px 20px 15px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/*PROYECTO*/
#Suavina{
  h1{
    margin-bottom: 20px;
  }
  .Suavina{
    width: 100%;
    display: flex;
    margin-bottom: -50px;
    #monigote-proyecto{
      display: flex;
      flex: 0 0 30%;
      img{
        width: 50%;
        object-fit: contain;
      }
      p{
        font-size: clamp(0.9rem, 1.3vw, 1.05rem);
      }
    }
    p{
    color: var(--texto-secundario2);
  }
  .info{
    display: flex;
    flex: 0 0 70%;
    padding-right: 40px;
  }
  }
}

#resultados{
  width: 100%;
  position: relative;
    display: flex;
    flex: 0 1 800px;
    max-width: 800px;
  .resultados{
    img{
      width: 100%;
      border-radius: 30px;
      margin-top: 5%;
    }
  }
}

/*ADVERTENCIA*/
#advertencias{
  position: relative;
  overflow: hidden;
  .suavine-estresado{
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 8.5%;
    left: 70%;

    img{
      width: 20%;
    }
  }
  h1{
    margin-bottom: 20px;
  }
.Riesgos{
  width: 100%;
  p{
    color: var(--texto-secundario2);
    width: 70%;
  }
  display: flex;
  align-items: center;
  gap: 20px;

}
.imagen{
  width: 30%;
  height: auto;
}
}


  


/*FORMULARIO*/

#cuestionario {
  background-color: var(--bg-primario); 
  border-radius: 15px;
  padding: 20px;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}


#cuestionario p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}


#cuestionario button {
  background-color: var(--bg-secundario2);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cuestionario {
  display: none; 
}

#resultado {
  display: none;
}

#cuestionario button:hover {
  transform: scale(1.05);
}

#test-aroma {
  border-radius: 30px;
  display: flex;
  justify-content: center; 
  align-items: center;  
  height: 60vh;           
  flex-direction: column;
  text-align: center;
  h2{
    color: var(--texto-secundario2);
  }
  
}
#test-aroma > button {
  background-color: #b65b7e;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#test-aroma > button:hover {
  background-color: #c0527c;
  transform: scale(1.05);
}


#resultado {
  max-width: 500px;
  margin: 20px auto;
  background-color: #fff0f5;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#resultado h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff1493;
}

#resultado p {
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 600px) {
  #cuestionario, #resultado {
    width: 90%;
    padding: 15px;
  }

  #cuestionario button, #test-aroma > button {
    width: 100%;
    margin: 5px 0;
  }
}

/*DESARROLLADORAS*/
#miembros{
  display: flex;
  flex-direction: column;
  position: relative;
}
#miembros .miembros{
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#miembros .tarjeta {
  display: flex;
  flex: 0 0 300px;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}

/* imagen */
#miembros .tarjeta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

/* texto oculto */
#miembros .tarjeta .cuerpo {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: white;
  transition: all 0.4s ease;
}

#miembros .tarjeta:hover .cuerpo {
  bottom: 0;
}

#miembros .tarjeta:hover img {
  filter: blur(3px) brightness(0.7);
}