*{
    box-sizing: border-box;
    margin: 0;
    
}
@font-face {
    font-family: 'Creato Display Black';
    src: url('fonts/creato-display.black.otf') format('opentype');
    font-weight: 900; /* Peso extra negrito */
    font-style: normal;
}

/* Aplicando a fonte ao site */
body {
    font-family: 'Creato Display Black', sans-serif;
    background-color: var(--gray);
    
}

:root{
    --red: #D6291E;
    --yellow: #FEC721;
    --gray: #EDEBEB;
}
header a, button a{
    text-decoration: none;
    list-style: none;
    color: black;
}
span{
    color: var(--red);
}
header{
    display: flex;
    justify-content: space-around;
    background-color: var(--red);
    align-items: center;
    padding: 1vw;
    button{
        margin: 0%;
    }
}
button{
    margin: 1vw;
    padding: 10px 25px;
    border: none;
    color: var(--red);
    font-weight: 600;
    border-radius: 20px;
    font-size: 1.02rem;
}
#fixo{
    font-weight: 600;
    font-size: 1rem;
    padding: 6px 30px;
    margin: 0;
}
button:hover{
    cursor: pointer;
    opacity: 99%;
    transform: scale(1.01);
    transition: all .5s;
}
#cta{
    background-color: var(--yellow);
    color: black;
}
#hero{
    width: 100%;
    
    height: 500px;
    background: linear-gradient(90deg, #a50505, #2d0d0d);
    position: relative;
    .container {
        max-width: 1700px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-radius: 10px;
        color: white;
        height: 500px;
    }

    .left {
        margin-left: 150px;
        width: 280px;
    }

    .left h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .robot {
        width: 400px;
        position: absolute;
        top: 0px;
        left: 40%;
    }

    .right {
        background: #3a1616;
        padding: 20px;
        margin-right: 170px;
        border-radius: 10px;
        text-align: center;
        width: 250px;
        height: 500px;
        h2{
            border: solid aliceblue 1px;
            padding: 15px;
            border-radius: 15px;
            font-size: 2.2rem;
        }
        #globo{
            border: solid aliceblue 1px;
            border-radius: 15px;
            padding: 15px;
            font-size: 2rem;

        }
    }

    .badge {
        background: red;
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 10px;
    }

    .offer-box {
        background: white;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        color: black;
        margin-top: 10px;
    }

    .offer-box .old-price {
        font-size: 14px;
        font-weight: bold;
    }

    .offer-box .old-price del {
        color: #666;
    }

    .offer-box .new-price {
        font-size: 28px;
        font-weight: bold;
        color: red;
    }

    .offer-box .new-price span {
        font-size: 18px;
    }

    .offer-box .discount {
        font-size: 12px;
        color: black;
        margin-top: 5px;
    }

    .button {
        background: var(--yellow);
        color: black;
        font-size: 18px;
        font-weight: bold;
        padding: 10px  50px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        margin-top: 10px;
    }
}
#planos h2{
    text-align: center;
    background-color: aliceblue;
    padding-bottom: 100px;
    font-size: 3rem;
}
#planos div{
    position: absolute;
    top: 1450px; 
    z-index: 2;
    display: flex;
    width: 70%;
    left: 15%;
    margin: auto;
    flex-wrap: nowrap;
    justify-content: space-around;
    img{
        max-width: 250px;
        box-shadow: black 1px 1px 5px;
        border-radius: 15px;
    }
    img:hover{
        transform: scale(1.05);
        transition: all .50s;
        cursor: pointer;
    }
    
}

#first{
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: aliceblue;
    width: 100%;
    padding: 50px 00px;
    img{
        width: 100%;
        box-shadow: black 1px 1px 5px;
        border-radius: 15px;
    }
    img:hover{
        transform: scale(1.05);
        transition: all .50s;
        cursor: pointer;
    }
    h1{
        margin-bottom: 20px;
        font-size: 3rem;
        text-align: center;

        span{
            color: var(--red);
        }
    }
    p{
        width: 70%;
        margin: auto;
        margin-bottom: 20px;
        text-align: center;
        font-size: 1.2rem;
        span{
            font-weight: 600;
        }
    }
    
    #grid{
        justify-content: center;
        display: grid;
        grid-template-rows: 115px 115px 115px;
        grid-template-columns: 700px 400px ;
        gap: 30px;
        #img{
            grid-row: 1/5;
            grid-column: 2;
            width: 100%;
        }
        #box{
            grid-column: 1/2;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
           
        }
        
        #box div{
            width: 250px;
            height: 90px;
            text-align: center;
            padding: 10px;
            background-color: whitesmoke;
            box-shadow: black 1px 1px 5px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            p{

                margin: 0;
            }
        }
        a, button{
            height: 40px;
            width: 60%;
            margin: auto;
        }
    }
}
#space{
    height: 500px;
    width: 100vw;
    background-color: #a50505;
}
button{
    background: var(--yellow);
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 10px  50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: auto;
    margin-right: 350px;
    margin-top: 10px;
}
#second{
    
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-direction: row;
    margin: auto;
    img{
        width: 100%;
        box-shadow: black 1px 1px 5px;
        border-radius: 15px;
    }
    img:hover{
        transform: scale(1.05);
        transition: all .50s;
        cursor: pointer;
    }
    div{
        
        margin: auto 40px;

        h2{
            font-size: 1.7rem;
            margin-bottom: 50px;
        }
        h3{
            color: var(--red);
        }
    }
    img{
        width: 250px;
    }
}
#tvbox{
    background-color: aliceblue;
    justify-content: center;
    padding: 50px 200px ;
    display: grid;
    grid-template-columns: 550px 350px;
    img{
        max-width: 1700px;
        margin: auto;
        width: 420px;
        grid-column: 1/2;
        box-shadow: 1px 1px 20px black;
    }
    div{
        max-width: 1700px;
        margin: auto;
        h3{
            font-size: 2rem;
            span{
                color: var(--red);
            }
        }
        p{
            margin-top: 20px;
            width: 350px;
        }
    }
    span{
        color: var(--red);
    }
    #preco{
        font-weight: bold;
        font-size: 2.4rem;
    }
}
footer p{
    background-color: var(--red);
    padding-top: 0px;
    padding-bottom: 20px;
    width:100%;
    text-align: center;
    
}
footer div p{
    background-color: var(--gray);
    padding: 40px;
    font-size: 10px;
    opacity: 50%;
}
.priv{
    text-align: left;
    padding: 10px 100px;
    font-size: 10px;
}
#contato{
    width: 20vw;
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 20px;
}
@media (max-width: 700px) {
    
    
    header{
        height: 100px;
        padding: 0vw;
        font-size: .7rem;

        img{    
            margin-left: 15px;
        }
    }
    header div p{
        font-size: 20px;
    }
    #menu{
        display: flex;
        flex-direction: column;
        gap:15px;
        
    }
    button{
        margin: 20px;
        height: 50px;
        padding: 5px 25px;
        font-weight: 500;
    }
    #menu a{ font-size: 20px;}
    button:hover{
        cursor: pointer;
        opacity: 99%;
        transform: scale(1.01);
        transition: all .5s;
    }
    #fixo{
        font-weight: 600;
        font-size: 1rem;
        padding: 6px 30px;
        margin: 0;
    }
    #cta{
        display:none
    }
    #planos h2{
        padding-top: 20px;
        text-align: center;
        background-color: aliceblue;
        padding-bottom: 100px;
        font-size: 3rem;
    }
    #planos div{
        top: 1720px;
        width: 100%;
        left: 0%;
        img{
            max-width: 120px;
           
        }
        
    }
    #space{
        height: 250px;
    }
    #hero{
        overflow: hidden;
        .container {
            max-width: none;
            align-items: center;
            justify-content: space-between;
            border-radius: 10px;
            color: white;
            height: 500px;
        }
    
        .left {
            display: none;
        }
    
        .robot {
            width: 450px;
            top: -60px;
            overflow:hidden;
        }
    }
    #first{
        padding: 5px;
        padding-top: 40px;
        h1{
            font-size: 2rem;
        }
        
        #grid{
            justify-content: center;
            display: grid;
            align-items:center;
            grid-template-rows: 250px 1fr;
            grid-template-columns: 1fr;
            gap: 30px;
            #img{
                grid-row: 2;
                grid-column: 1;
                width: 70%;
                margin: 10px auto ;
                
            }
            #box{
                grid-column: 1;
                display: flex;
                flex-wrap: wrap;
                gap: 13px;
                width: 90%;
                margin: auto;
                button{
                    width: 100%;
                    font-size: 20px;
                }
            }
            
            #box div{
                width: 100px;
                height: 60px;
                padding: 5px;
                display: flex;
                justify-content: center;
                align-items: center;
                p{
                    font-size: 12px;

                    width: 100%;
                }
                
            }
        }
    }
    
    #second{
        width:90vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        img{
            transform: scale(0.9);
            margin-left: 0px;
            margin-top: 0px;
        }
        div{
            width: 200px;
            margin: auto 4px;
            margin-left: 0px;
            h2{
                margin-top: 0px;
                
                font-size: 1rem;
                margin-bottom: 5px;
            }
        }
    }
    #tvbox{
        justify-content: center;
        flex-direction: column-reverse;
        padding: 50px 20px ;
        display: flex;
        img{
            margin-top: 20px;
            width: 90vw;
        }
        button{
            width: 90%;
            align-self: center;
        }
    }
    #contato{
        width: 90vw;
        
    }
}