
body{
    font-family: "Montserrat", sans-serif;
    background: #fcccd6d0;
}
header{
    display: flex;
    max-width: 940px;
    padding: 10px 0;
}

header .logo{
    width: 100px; 
    border-radius: 50%;
    margin-left: 30%;
}
/* estilo de la barra de navegacion */
nav{
    position: absolute;
    top:50px;
    right: 10%;
}

nav li{
    display: inline;
    margin: 0 0 0 15px;
}

nav a{
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}

nav a:hover{
    color: rgb(89, 0, 255);
    text-decoration: underline;
}

.productos{
    display: flex;
    width: 100%;
    max-width: 940px;
    flex-wrap: wrap;
    margin: 12px auto;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
/* lista de productos: bloque, texto centrado, ancho 22%, alineación vertical:arriba, 
margenes laterales 1%, espaciamiento interno padding, color y estilo de bordes */
.productos li{
    display: inline-block;
    width: 22%;
    
    padding: 5px 10px;
    box-sizing:border-box;
    border-color: #000000;
    border-width: 2px ;
    border-style: solid;
    border-radius: 5%;
}
/* class + hover modifica cuando pasamos el cursor por arriba del elemento */
.productos li:hover{
    border-color: rgb(255, 180, 81);
   
}
/* class + active: modifica cuando clicamos */
.productos li:active{
    border-color: rgb(220, 95, 252);
}
.productos h2{
    font-size: 20px;
    font-weight:bold ;
}
.productos li:hover h2{
    font-size: 25px;
}
.cortes{
    width:170px ;
}
.tinturas{
    width: 170px; 
}
.tratamientos{
    width: 170px;
}
.uñas{
    width: 170px;
}
.producto-descripcion {
    font-size: 15px;
}
/* letras negritas margen de arriba 10px */
.producto-precio {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}
/* imageny texto centrado backgraund con imagen */
footer{
    text-align: center;
    background: url(banner/bg/89843967-día-de-san-valentín-fondo-cuadrado-con-manchas-de-acuarela-de-color-rosa-luz-rosa-acuarela-mujer.jpg);
    padding: 40px;
}
footer .logo{
    width: 100px; 
    border-radius: 50%;
   
}
.copyright{
    color: #ffffff;
    font-size: 13px ;
    margin:20px;
}

form{
    margin: 40px 20px;
}
form label, form legend{
    display: block;
    font: 20px;
    margin: 0 0 10px;
}
.input-padron{
    display: block;
    margin: 0 0 20px;
    padding: 10px 25px;
    width: 50%;
}
.checkbox{
    margin: 20px 0;
    display: block;
}
table{
    margin: 40px 40px;
}

thead{
    background: #555555;
    color:white;
    font-weight: bold;
}

td,th{
    border: 1px solid #000000;
    padding: 8px 15px;
}

/* inicia css para nuestra home */
.banner{
    width: 100%;
}

.titulo-principal{
    text-align: center;
    font-size: 2em;
    margin: 0 0 1em;
    clear: left;
    
}
.principal p{
    margin:0 0 1em ;

}
.principal strong{
    font-style: bold;
}
.principal em{
    font-style: italic;
}
.herramientas{
    width: 120px;
    float: left;
    margin: 0 20px 20px 0;
}
.mapa{
    padding: 3em 0;
    background:linear-gradient(#f8d1d9d0, #ffbae9) ;  
}
.mapa-contenido{
    width: 90%;
    margin: 0 auto;
}
.diferenciales{
    padding: 3em 0;
    background: #ffd8df;
}
.contenido-diferenciales{
    width: 640px;
    margin: 0 auto;
}
.items{
    line-height: 1.5;
}
.items:first-child{
    font-weight: bold;
}
.lista-diferenciales{
    width: 40%;
    display:inline-block;
    vertical-align: top;
}
.imagen-diferenciales{
    width: 50%;
    transition: 400ms;
    box-shadow: 10px 10px 20px 15px  #f7a1ff;
}
.imagen-diferenciales:hover{
    opacity: 0.3;
}
.video{
    width: 560px;
    margin: 2em auto;
}
@media screen and (max-width:480px){
    header{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    nav{
        display: flex;
        gap: 10px;
        width: 100%;
        position: static;
    }

  .caja, .banner, .mapa-contenido, .diferenciales, .contenido-diferenciales, .video{
    width: 95%;
        }
 .principal{
  
    width: 85%;
    padding-left: 20px;
    padding-top: 20px;
  }
 .productos, .productos li{
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }
  .productos img{
    width: 80%;
  }
 .lista-diferenciales, .contenido-diferenciales{
 width: 95%;}
}
@media(min-width:500px) {
    .principal{
        position: absolute;
        top: 250px;
        padding: 5rem;
    }
    
}

