*{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

a{
    color: dodgerblue;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

nav{
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top:0;
    backdrop-filter: saturate(180%) blur(20px);
}

.container{
    width: 90%;
    margin: 0 auto;
    /* border:1px solid red; */
}

.menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 44px;
}

.menu a{
    color:#a1a1a1;
    font-size: 13px;
    text-decoration: none;
}

.menu a:hover{
    color:#ccc;    
}

.loguinho{
    height: 22px;
}

.topo-promo{
    margin-top: 44px;
    width: 100%;
    text-align: center;
    padding:2px;
    background: #f5f5f5;
    font-size: 14px;
}

section.iphone{
    width: 100%;
    text-align: center;
    padding:10px;
    background: #FBFBFD;
}

section.iphone h2{
    font-size: 52px;
    color:#333;
    margin-bottom: 0;
    padding:5px;
    /* border:1px solid blue; */
    font-weight: 600;
}

section.iphone p{
    font-size:27px;
    color:#333;
    margin-top:0;
    margin-bottom:10px;
    padding:0;
}

section.iphone a, section.iphone-pro a , section.ipad-pro a{
    font-size:20px;
    margin-bottom:4px;
}

.max-img{
    max-width: 100%;
}

.container-iphone{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
     /* border:1px solid red;  */
    margin:0 auto;
}

section.iphone-pro{
    width: 100%;
    text-align: center;
    padding:10px;
    background: black;
    color:white;
}

section.iphone-pro h2{
    font-size: 52px;
    color:white;
    margin-bottom: 0;
    padding:5px;
    /* border:1px solid blue; */
    font-weight: 600;
}

section.iphone-pro p{
    font-size:27px;
    color:white;
    margin-top:0;
    margin-bottom:10px;
    padding:0;
    font-weight: 300;
}

.container-iphone-pro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
     /* border:1px solid red;  */
    margin:0 auto;
}

section.ipad-pro{
    width: 100%;
    text-align: center;
    padding:10px;
    background: black;
    color:white;
    margin-top: 12px;
}

section.ipad-pro h2{
    font-size: 52px;
    color:white;
    margin-bottom: 0;
    padding:5px;
    /* border:1px solid blue; */
    font-weight: 600;
}

section.ipad-pro p{
    font-size:27px;
    color:white;
    margin-top:0;
    margin-bottom:10px;
    padding:0;
    font-weight: 300;
}

.container-ipad-pro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:70%;
     /* border:1px solid red;  */
    margin:0 auto;
}

section.destaques{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;    
}

.col-50{
    flex:1;
    text-align: center;
    background: #FBFBFD;
    /* border:1px solid blue; */
    margin:5px;
    padding-top:3%;
}

.col-50 h2{
    font-size: 36px;
    color:#333;
    margin: 0;
    padding:5px;
    /* border:1px solid blue; */
    font-weight: 600;
}

.col-50 p{
    font-size:20px;
    color:#333;
    margin-top:0;
    margin-bottom:10px;
    padding:0;
    font-weight: 300;
}

.col-50 a{
    font-size:20px;
}

.container-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100%;
     /* border:1px solid red;  */
    margin:0 auto;
}

.d-none{
    display: none;
}

.background{
    background-image: url('../img/6.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.rosa{
    background: #C79B8B;
}

.verde-escuro{
    background: #111B1F;
}

.text-white{
    color: white !important;
}

footer{
    width: 100%;
    background: #f5f5f5;
    margin-top: 1%;
    padding-bottom:5%;
    border:1px solid #f5f5f5;
}

.container-footer{
    width: 90%;
    margin:auto;
    font-size:12px;
    /* border:1px solid blue; */
}

.p-footer{
    color:gray;
    padding:5px;
    margin-top:2%;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.col{
    padding:10px;
    /* border:1px solid orangered; */
}

.col h3{
    font-size:12px;
    color:#333;
    font-weight: 800;
}

.col a{
    color:#616161;
    display: block;
    padding:15px 0 0 0;
}

.item-burguer{
    display: none;
}

/* EM TELAS DE TAMANHO 600PX PARA BAIXO */
@media only screen and (max-width:600px){
    nav{
        background: #333 ;
    }
    .item-burguer{
        display: block;
        font-size:22px !important;
    }
    .item{
        display: none;
    }
    .row{
        flex-direction: column;
        align-items:center;
        text-align: center;
    }
    .background{
        background: none;
    }
    .d-none{
        display: block;
    }
    .menu-mobile{
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #333;
        position: fixed;
        text-align: center;
    }
    .menu-mobile a{
        color:#a1a1a1;
        border-top: 1px solid #a1a1a1;
        padding:7%;
    }

}

/*TELAS DE 601PX PARA CIMA*/
@media only screen and (min-width:601px){
    .background{
        background: none;
    }
    .d-none{
        display: block;
    }
}

/*TELAS DE 992PX PARA CIMA*/
@media only screen and (min-width:992px){
    section.destaques{
        flex-direction: row;
    }

    .d-none{
        display: none;
    }
    
    .background{
        background-image: url('../img/6.jpg');
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;
    }

    .container{
        width: 50%;
        margin: 0 auto;
    }

    .container-footer{
        width: 70%;
    }
    
}

/*TELAS DE 1200PX PARA CIMA*/
@media only screen and (min-width:1200px){
    .container-footer{
        width: 50%;
    }
}