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

body{
    background-color: #c0b1b185;
}

.contenedor{
    width: 92%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    margin: 25px auto;
    border-radius: 16px;
}

.encabezado{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

#imagenM{
    display: flex;
    width: 100%;
    border-radius: 16px 16px 0 0;
}

#imagenD{
    display: none;
}

.contenido{
    width: 100%;
    display: flex;
    flex-direction: column;    
    align-items: center;   
}

.perfume{
    width: 90%;
    letter-spacing: 4px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 500;
    font-size: .8rem;
}

.titulo{
    width: 90%;
    font-size: 1.8rem;
    margin: 14px 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 900;
    line-height: 1;
}

.parrafo{
    width: 90%;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

.precio{
    width: 90%;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.textoGris{
    color: gray;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rebaja{
    font-size: 2.2rem;
    color: rgba(22, 99, 62, 0.907);
    letter-spacing: -2px;
}

.sinRebaja{
    font-size: 0.8rem;
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 35px;
}

.boton{
    width: 90%;
    padding: 11px 0 13px;
    display: flex;
    justify-content: center;
    align-items: center;   
    background-color:rgba(22, 99, 62, 0.907);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.textoBoton{
    font-weight: 500;
    font-size: 0.8rem;
    color: #fff;
}

.textoBoton svg{
    margin-right: 14px;
    width: 16px;
    height: 16px;
}

@media screen and (min-width: 769px){

    .contenedor{
        background-color: #fff;
        flex-wrap: nowrap;
        width: 70vw;
        height: 65vh;
        border-radius: 10px;
        align-items: center;
        margin: 100px auto;
    }

    .encabezado{
        width:100%;
        margin: 0;
        height: 65vh;
        display: flex;
        justify-content: flex-start;
    }

    .contenido{
        width: 100%;
        padding: 10px;
        margin-top: 20px;
    }

    #imagenD{
        display:flex;
        margin: 0;
        width: 100%;
        border-radius: 10px 0 0 10px;
    }

    #imagenM{
        display: none;
    } 

    .boton{
        padding: 9px;
    }

    .boton:hover{
        background-color:rgba(8, 70, 40, 0.907);
        cursor: pointer;
    }
    
}











/* body{
    background-image: url(\images/favicon-32x32.png);
    background-repeat: no-repeat;
    background-size: cover;
} */