* {
    background-color: black;
    color: white;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-sizing: border-box;
    padding: 0;
    border: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 40px;
}

span {
    color: gold;
    font-size: 40px;
}

button {
    background-color: gold;
    color: black;
    padding: 10px;
    width: 300px;
    border-radius: 30px;
}

button:hover {
    font-weight: bold;
    cursor: pointer;
}

#header1 {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    position: fixed;
    top: 0px;
    z-index: 1;

    & .logo,
    a,
    img {
        background: none;
        width: 300px;
        padding: 0px 5px;
    }

    & .logo,
    img:hover {
        transition: 0.75s;
        filter: drop-shadow(0 0 6px rgb(165, 140, 0))
    }

    & .header-box {
        display: inline-flex;
        align-items: center;

        & .header-section {
            padding: 0px 20px;

            & a:hover,
            p:hover {
                font-weight: bold;
                cursor: pointer;
            }
        }
    }
}

#header2 {
    display: none;
    justify-content: space-between;

    & a,
    img {
        width: 300px;
    }

    & #header2-lateral-menu {
        & img {
            width: 40px;
        }

        & img:hover {
            width: 40px;
            cursor: pointer;
        }
    }
}

.main-section {
    margin-top: 80px;
}

.main-section,
.main-section-servicos,
.main-section-contatos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px 0px 0px 20px;
    min-height: 900px;
    padding: 80px 4%;
    border-bottom: 2px solid gold;
}

.main-section-texts {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    max-width: 98%;

    & h1 {
        max-width: 900px;
        min-height: 100px;
    }

    & p {
        padding: 50px 0px 50px 0px;
        max-width: 900px;
        min-height: 100px;
    }
}

#videoapresentacao {
    border: 2px solid gold;
}

#AcaoCompleto {
    background: none;
    width: 400px;
}

.main-section-quemsomos {
    margin-left: 200px;
}

.main-section-servicos {
    display: flex;
    flex-direction: column;

    & h1 {
        text-align: center;
    }
}

.box-holder-main {
    display: inline-flex
}

.box-holder {
    border: 2px solid gold;
    margin: 0px 20px;
    height: 600px;
    width: 400px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-holder:hover {
    box-shadow: 4px 4px 40px 4px gold;
    transform: scale(1.05);
    transition: .75s;
}

.icone {
    width: auto;
    padding-top: 40px;

    & img {
        width: 100px;
    }
}

.text {
    padding-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    & h1 {
        font-size: 40px;
        width: auto;
        text-align: center;
    }

    & span {
        font-size: 40px;
    }

    & p {
        font-size: 20;
        width: auto;
        padding: 5px;
        text-align: center;
    }
}

.contato-form-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 800px;
}

.contato-form {
    height: auto;
    display: flex;
    flex-direction: column;
    width: 400px;
    border-radius: 30px;
}

.input-dados-form {
    border: 2px solid gold;
    padding: 20px;
    margin: 10px;
    border-radius: 30px;
    place-items: center;
}

#mensagem {
    height: 300px;
}

.footer-main-images {
    display: flex;
    justify-content: space-between;
}

#footer-logo {
    width: 40px;
}

.footer-vetor {
    width: 40px;
    margin: 0px 20px;
}

.footer-main-images-logo {
    padding: 10px;
    display: flex;
    align-items: center;

    & p {
        padding-left: 40px;
    }
}

.footer-main-images-vetores {
    padding: 10px;
    margin: 0px 40px;
}

.footer-main-texts {
    text-align: center;
}

.blackOverlay {
    display: none;
}

@media screen and (max-width: 1435px) {

    body {
        text-align: center;
    }

    .main-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
        justify-content: center;
        align-items: center;

        .videoHolder {
            display: flex;
            justify-content: center;
            align-items: center;
        }

    }

    .main-section-texts {
        display: flex;
        align-items: center;
    }

    .box-holder-main {
        min-height: none;
        display: flex;
        flex-direction: column;
    }

    .box-holder {
        margin: 20px 0px;
    }

    #header1 {
        display: none;

    }

    #header2 {
        display: flex;
    }

    .main-section-quemsomos {
        margin-left: 0px;
    }

    .blackOverlay {
        display: none;
    }

    .blackOverlay.active {
        display: flex;
        background-color: rgba(31, 30, 30, 0.9);
        height: 100vh;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        justify-content: flex-end;
        overflow: hidden;

        .lateralMenu {
            display: flex;
            flex-direction: column;
            position: relative;
            width: clamp(40svw, 400px, 80svw);
            height: 150lvh;
            background-color: black;
            align-items: center;
            gap: 40px;
            border: 1px solid gold;
            position: absolute;
            right: -100px;
            transition: right .5s ease;

            .lateralMenu-exitButton {
                display: flex;
                position: relative;
                width: 95%;
                justify-content: left;
                align-items: center;
            }

            .lateralMenu-logo {
                display: flex;
                justify-content: center;

                & img {
                    background: none;
                    cursor: pointer;
                    width: clamp(20%, 100px, 100%);
                }

                & img:hover {
                    transition: 0.75s;
                    filter: drop-shadow(0 0 6px rgb(165, 140, 0));
                    transform: scale(1.05);
                }
            }

            .lateralMenu-sections {
                display: flex;
                flex-direction: column;
                gap: 20px;
                width: 95%;

                .section-button {
                    display: flex;
                    cursor: pointer;
                    align-items: center;
                    justify-content: center;

                    & p {
                        width: fit-content;
                    }

                    & p:hover {
                        color: rgb(165, 140, 0);
                        text-decoration: underline;
                    }
                }
            }

        }

        .lateralMenu.open {
            right: 0;
        }

        .blackOverlay.active {
            display: flex;
        }
    }

    .footer-main-images {
        display: flex;
        flex-direction: column;
    }

    .no-scroll {
        overflow: hidden;
    }

}