:root{
    --BtnIOS: hsl(171, 66%, 44%);
    --BtnMac: hsl(233, 100%, 69%);
    --GrisOscuro: hsl(210, 10%, 33%);
    --GrisClaro: hsl(201, 11%, 66%);
}

/**Global*/
body{
    font-family: 'Bai Jamjuree',sans-serif;
    text-align: center;
    margin: 0;
}
main {
    width: 90%;
    margin: 0 auto;
}
header{
    background: url(/images/bg-header-desktop.png) no-repeat;
    background-size: cover;
    width: 100%;
    padding: 80px 0px 50px;
    margin: 0 auto;
}


/**Text*/
h1, h2, h3, p{
    color: var(--GrisOscuro);
}
h1, h2, h3{
    font-weight: 600;
}
h1{font-size: 50px;}
h2{font-size: 30px;}
h3{font-size: 20px;}

p{
    font-size: 18px;
    font-weight: 400;
}

/**Buttons*/
button{
    padding: 14px 50px;
    border-radius: 20px;
    border: none;
    margin: 20px;
    color: white;
    font-family: 'Bai Jamjuree',sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
}
button:hover{
    opacity: 0.7;
}
.BtnIOS{
    background-color: var(--BtnIOS);
}
.BtnMac{
    background-color: var(--BtnMac);
}

/**Layout Components*/
.infoWorkflow2{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.infoWorkflow2 img{
    margin-bottom: 50px;
}
.imgInfoMonitor2{
    width: 90%;
}
/**Footer*/
footer {
    background-color: hsl(201, 11%, 96%);
    padding: 20px 0;
    width: 100%;
}

.footerContainer {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footerLogoInfo {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.footerLogo {
    width: 55px;
    height: auto;
    margin: 20px 0px;
}
.footerLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}

.footerLinks a {
    color: hsl(210, 10%, 33%);
    text-decoration: none;
    font-size: 18px;
    margin: 10px 0px;
}

.footerLinks a:hover {
    color: hsl(171, 66%, 44%);
}

.socialIcons {
    display: flex;
    gap: 24px;
    margin: 10px 0px;
}

.socialIcons img {
    width: 24px;
    height: 24px;
}

.socialIcons a:hover img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(552%) hue-rotate(121deg) brightness(89%) contrast(87%);
}


@media (min-width: 765px) {
    
    .infoMonitor,
    .infoWorkflow {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .infoMonitor {
        text-align: left;
    }
    .margen{
        margin: 150px 0;
    }
    .infoWorkflow2{
        flex-direction: row;
    }
    
    .infoSection{
        width: 30%;
    }
    .infoMonitor2{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30%;
    }
    
    footer {
        padding: 50px 0;
    }
    
    .footerContainer {
        max-width: 1440px;
        margin: 0 auto;
        justify-content: space-between;
        padding: 0 165px;
        flex-direction: row;
    }
    
    .footerLogoInfo {
        gap: 140px;
        flex-direction: row;
    }
    
    .footerLinks {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: left;
        flex-direction: row;
    }
}