:root {
    --color-black: #000000;
    --color-orange: #EB6828;
    --color-blue: #272361;
    --color-white: #ffffff;
    --color-gray: #292C2F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cuprum", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: var(--color-white);
}

header {
    background-color: var(--color-black);
    border-bottom: solid 6px var(--color-orange);
    width: 100%;
    height: 100px;
    display: flex;
    padding-inline: 3rem;
    align-items: center;
    justify-content: flex-start;

    img {
        height: 80px;
    }
}

.hero {
    width: 100%;
    height: 70vh;

    img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
        object-position: center 20%;
    }
}

section {
    display: flex;
    flex-direction: row;
    margin-bottom: 5rem;

    main {
        flex: 1;
        padding: 3rem 6rem;

        .title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            width: 80%;
        }

        .text {
            font-size: 1.5rem;
            margin-bottom: 5rem;
            letter-spacing: 1px;
            width: 75%;
        }

        .orange {
            color: var(--color-orange);
        }

        h3 {
            font-style: italic;
            font-size: 1.6rem;
            color: var(--color-blue);
            margin-bottom: 1.5rem;
        }

        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        img.certificado-mobile {
            display: none;
        }
    }

    aside {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30vw;

        img.vidro-blindado {
            margin-top: -130px;
            z-index: -1;
            width: 50%;
        }

        img.certificado {
            width: 60%;
            margin-block: 3rem;
            box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.7);;
        }
    }
}

.garantia {
    background-color: var(--color-gray);
    display: flex;
    position: relative;

    p {
        color: var(--color-orange);
        padding: 3rem 6rem;
        font-size: 1.7rem;
        width: 60%;
        margin-bottom: 3rem;
    }

    img {
        width: 20%;
        position: absolute;
        right: 90px;
        transform: translateY(-35%);
    }
}

footer {
    width: 100%;

    img.footer-banner {
        width: 100%;
    }

    .footer__content {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin-top: -170px;

        img {
            width: 15%;
        }

        .instagram__line {

            .line {
                display: flex;
                flex-direction: row;
                align-items: center;

                width: 350px;
                background: transparent;

                span {
                    width: 100%;
                    height: .6px;
                    display: block;
                    background: #444749;
                }

                .orange__span {
                    height: 3px;
                    border-radius: 2px;
                    background-color: #EB6828;
                }
            }

            .instagram {
                margin-top: .8rem;
                display: flex;
                justify-content: center;

                a {
                    display: flex;
                    align-items: center;
                }

                i {
                    margin-right: .3rem;
                }

                p {
                    background-color: #44474920;
                    border-radius: 8px;
                    padding-inline: .5rem;
                    padding-block: .2rem;
                    color: var(--color-orange);
                }
            }

        }

        .contato {
            display: flex;
            flex-direction: column;
            font-size: 1.3rem;
            
            i {
                margin-right: .5rem;
            }
        }

        .adress {
            font-size: .9rem;
        }
    }
}

/* RESPONSIVIDADE */

@media screen and (max-width: 1550px) {

    .hero {
        height: fit-content;

        img {
            height: auto;
            object-fit: unset;
            object-position: unset;
        }
    }
}

@media screen and (max-width: 1300px) {

    section {
        main {
            .text {
                width: 90%;
            }
        }

        aside {
            img.vidro-blindado {
                margin-top: -90px;
                width: 60%;
            }
        }
    }

    footer {
        .footer__content {
            margin-top: -130px;
        }
    }

}

@media screen and (max-width: 1150px) {

    section {
        aside {
            img.vidro-blindado {
                margin-top: -30px;
                width: 65%;
            }

            img.certificado {
                width: 70%;
            }
        }
    }
}

@media screen and (max-width: 1050px) {

    .garantia {
        p {
            width: 80%;
        }

        img {
            width: 25%;
            position: absolute;
            right: 40px;
            transform: translateY(-35%);
        }
    }

    footer {
        .footer__content {
            margin-top: -90px;
        }
    }
}

@media screen and (max-width: 900px) {

    section {
        main {
            .title {
                width: 100%;
            }
        }
    }
}

@media screen and (max-width: 800px) {

    section {
        main {
            padding: 2rem;
            text-align: center;
            width: 100%;

            .text {
                margin: 0 auto;
                margin-bottom: 2rem;
                width: 100%;
            }

            img.certificado-mobile {
                display: block;
                margin: 0 auto;
                height: 30%;
                margin-top: 5rem;
            }
        }

        aside {
            display: none;
        }
    }

    .garantia {

        p {
            margin-top: 3rem;
            text-align: center;
            width: 100%;
            padding: 3rem;
        }

        img {
            width: 30%;
            position: absolute;
            right: 50%;
            transform: translate(50%, -55%);
        }
    }

    footer {
        .footer__content {
            margin-top: -50px;
            padding-inline: 3rem;

            .instagram__line {
                .line {
                    width: 250px;
                }
            }
        }
    }
}

@media screen and (max-width: 700px) {
    

    footer {
        .footer__content {
            flex-direction: column-reverse;
            row-gap: 3.5rem;

            img {
                width: 35%;
            }

            .instagram__line {
                .line {
                    width: 400px;
                }

                .instagram {
                    font-size: 1.5rem;
                }
            }
        }
    }
}

@media screen and (max-width: 550px) {

    footer {
        .footer__content {

            .instagram__line {
                .line {
                    width: 250px;
                }
            }
        }
    }
}

@media screen and (max-width: 450px) {
    section {
        main {
            img.certificado-mobile {
                height: 25%;
                width: 95%;
                object-fit: cover;
            }
        }
    }
}

@media screen and (max-width: 380px) {
    section {
        main {
            img.certificado-mobile {
                height: 20%;
                width: 95%;
                object-fit: cover;
            }
        }
    }
}