/*REGLAS DE RAÍZ PARA EL HTML*/
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Open Sans', sans-serif;

}

:root{
--font-size-regular: 1rem;
--font-size-title: 1.6rem;
--font-size-subtitle:1.2rem;
--font-size-h3: 2rem;
--color-orange: #EE8030;
--color-black: #1A1A1A;
--color-gray-background: #5A5B5A;
--color-gray-medium: #808080;
--color-gray: #CDCECA;
--color-white: #FFFFFF;    
};

html{
font-size: 62.5%;
}

/*COMPONENTE HEADER*/
.img_header{
width: 100%;

}

/*COMPONENTE descripción, contiene 2 filas parrafo e imagen, y 3 columnas imagen y texto de manera vertical */

.descripcion{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;

}

.descripcion .img_descripcion{
    width: 90%;
}

.subtitles{
font-size: var(--font-size-subtitle);
text-align: center;
margin-bottom: 1rem;
}
.text_descripcion{
    text-align: center  ;
    color: var(--color-gray-background);
    font-size: var(--font-size-regular);
    line-height: 1rem;
    padding: 1rem;
    text-align: center;
    margin: 1rem;
}

.img_descripcion{
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}


/*  bloque características*/

.bloque_caracteristicas{
    display: flex;
    width: 95%;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;

}

.text_caracteristicas{
    width: 80%;
    text-align: center;
    margin: 2% auto;
}

.img_caracteristicas{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 35%;
}


/*componente frosther*/

.caracteristicas_frother{
display: flex;
width: 90%;
align-items: center;
justify-content: center;
margin: 0 auto;
}

/*  SECCIÓN 3D*/

/* .seccion_3d{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
} */

    .seccion_3d iframe{
        display: flex;
        width: 70vw;
        height: 80vh;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border: none;
    }

.contenedor_img{
    width: 50%;
    height: 100%;
}

    .img_frother{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    strong{
        color: var(--color-orange);
    }

    .text_frother{
        width: 50%;
        text-align: center;
    }

/*componente video*/

.container_video {
    margin: 2% auto;
    display: flex;
    width: 100%;
    justify-content: center;
}

    .container_video video {
        display: flex;
        width: 90%;
        justify-content: center;
    }


/*COMPONENTE CARACTERISTICAS SECUNDARIAS*/

.descripcion_2{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

    .descripcion_2_texto{
        text-align: center;
        font-size: var(--font-size-regular);
        margin-bottom: 1rem;
    }

    .img_descripcion_2{
        display: flex;
        width: 100%;
        margin: 0 auto;
    }


/*SLIDER DIVISORIO*/

.slider_color{
grid-area: slider_color_1;
background-color: var(--color-orange);
height: 1rem;
margin: 1rem;    
}

/*FOOTER CON SELLO PERSONZALIZADO DE KRUPS*/
.sello_krups{
grid-area: sello_krups;
margin: 1rem;
}

.img_sello{
display: flex;
margin: 0 auto;
text-align: center;
width: 80%;
height: auto;
}


@media only screen and (min-width: 700px){


.descripcion{
    width: 100%;
    display: flex;
    justify-content: center;

}

.bloque_caracteristicas{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;

}

    .contianer_bloque_caracteristicas{
        width: 90%;
    }

        .contianer_bloque_caracteristicas img{
            width: 70%;
        }


}
