/**GLOBALES**/

/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
    font-size: 62.5%;
    /** Reset para REMS - 62.5% = 10px de 16px **/
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--color-negro);

}

img {
    max-width: 100%;
}

.contenedor {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* Variables */

:root {
    --color-blanco: #fff;
    --color-negro: #333333;
    --color-amarillo: #F7911D;
    --color-plomo: #575757;

}

/**ESTILOS HEADER**/


.body {
    background-image: url(../img/fondo.png);
    min-height: 500px;
}

.header {
    margin-top: 50px;
    text-align: center;
}

.header__logo {
    text-align: center;
    width: 180px;
}

.header__parrafo {
    color: var(--color-plomo);
    font-size: 1.8rem;
    margin: 40px auto;
    max-width: 820px;
}

/**ESTILOS MAIN**/
.main__titulo {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.main__linea {
    display: block;
    width: 150px;
    height: 8px;
    background-color: var(--color-amarillo);
    border-radius: 10px;
    margin: 0 auto 0 auto;
    margin-bottom: 35px;
}

.plataformas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.plataforma-item {
    flex-basis: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #D0CECE;
    background-color: var(--color-blanco);
    border-radius: 10px;
    padding: 5px 15px;
    gap: 60px;
}
.plataforma-item:hover {
    scale: 1.03;
    box-shadow: 6px 6px 10px -6px rgba(23,23,23,0.32);

}
.plataforma-item__flecha img {
    width: 150px;
}
@media (min-width: 768px){
    .main__titulo {
        font-size: 4rem;
      
    }
    
}


/**FOOTER**/
.footer{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
    margin-bottom: 20px;
}
.footer__logo img {
    width: 100px;
    display: none;
}

.footer__datos {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__datos a {
    font-size: 2.2rem;
    color: var(--color-negro);
    text-decoration: none;
    font-weight: 600;
}

.footer__datos span {
    font-size: 2rem;
    color: var(--color-negro);
    font-weight: 600;
}
.footer__datos .footer__datos--correo{
    text-decoration: underline;
}

.footer__redes {
    display: flex;
    gap: 10px;
}
.footer__redes img{
    width: 35px;
}

.barra {
    background-color: var(--color-negro);
    padding: 15px 20px;
    color: var(--color-blanco);
    font-size: 1.6rem;
    text-align: center;
}

.barra p {
    margin: 0;
}

.barra a {
    color: var(--color-amarillo);
    text-decoration: none;

}
@media (min-width: 768px) {
    .footer{
        margin-top: 60px;
    }
    .footer__logo img{
        display: block;
    }
}