:root {
    --color1: #113213;
    --color2: #1B2737;
    --color3: #344967;
    --color4: #fff;
    --color5: #000;
    --color6: #F2E7A9;

    --text-weigth: 500;

    --titulo: 29px;
    --subtitulo: font-size: 20px;
    --text: 17px;

}


html {
    scroll-behavior: smooth;
}


#logo img {
    width: 120px;
}

#logo {
    width: 145px;
    padding-top: 30px;
}

#header {
    box-sizing: border-box;
    max-width: 1210px;
    margin: 0 auto;
    height: 70px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu {
    padding-top: 30px;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-direction: row;
}

#menu a {
    display: block;
    padding: 0.2rem;
    color: var(--color4);
    font-size: 18px;
}

#btn-mobile {
    display: none;
}

.buttton-header {
    padding: 0px 0px;
    width: 153px;
    background: var(--color4);
    border: none;
    border-radius: 23px;
}

.buttton-header a {
    color: var(--color1);
}

#text-button-header p {
    color: var(--color4);
}

/* container banner */

:root {
    --marquee-width: 80vw;
    --marquee-height: 50px;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    overflow: hidden;
    position: relative;
    background: #ffffff8a;
    margin-top: -3px;
    box-shadow: 0px 2px 12px #00000024;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #00000000 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #00000000 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 40px;
    display: flex;
    gap: 25px;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

.marquee-content li p {
    font-size: 14px;
    color: #000000b3;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    white-space: nowrap;
}

.marquee-content li img {
    width: 84px;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }

    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }

    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}

#p-button {
    color: #003795;
    font-size: 16px;
}


@media (max-width: 600px) {

    #button-header-mobile {
        display: none;
    }

    #header {
        max-width: 1210px;
        margin: 0 auto;
        background: var(--color2);
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 00px;
        right: 0px;
        background: var(--color1);
        transition: 0.6s;
        z-index: 2;
        height: 0px;
        visibility: hidden;
        overflow-y: hidden;
        flex-direction: column;
    }

    #nav.active #menu {
        height: calc(100vh - 462px);
        visibility: visible;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
    }

    #menu a {
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        position: sticky;
        z-index: 15;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
        color: var(--color4);

    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        background: var(--color4);
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;

    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;

    }
}





/* container banner   */

.bk-banner {
    width: 100%;
    margin-top: -70px;
    height: 304px;
    background-image: url(/img/close-up-smiling-person-conference-room.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.div-bk-banner {
    padding: 0px 5px;
}

.bk-banner h1 {
    font-size: 34px;
    color: white;
    line-height: 36px;
    padding: 9px 0px 5px;
    max-width: 310px;
}

.bk-banner h2 {
    color: white;
    padding-bottom: 10px;
    max-width: 298px;
    font-weight: 300;
    line-height: 24px;
}

/* cotainer contatos */


.container-contatos {
    max-width: 1210px;
    margin: 0 auto;
    padding: 25px 15px;
}

.div-contatos h2 {
    font-size: 24px;
    width: 90%;
    font-weight: 500;
    padding: 4px 0px;
}

.div-contatos {
    padding: 25px 0px 20px;
}

.div-contatos p {
    font-size: 17px;
    line-height: 30px;
    padding: 0px 0px 10px;
    max-width: 346px;
}

.formulario {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 25px 10px;
    border: 1px solid black;
    border-radius: 10px;
}

.formulario h2 {
    font-size: 24px;
    width: 90%;
    font-weight: 300;
    padding: 4px 0px;

}

.formulario p {
    font-size: 14px;
    line-height: 21px;
    /* color: white; */
    padding-bottom: 10px;
}

.formulario input::placeholder {
    /* color: rgb(255, 255, 255); */
    font-weight: 300;
}

.formulario input {
    background: transparent;
    border: none;
    font-size: 17px;
    padding: 3px 0px;
    margin: 10px 0px;
    border-bottom: 1px solid var(--color5);
}

.formulario button {
    padding: 5px 0px;
    width: 230px;
    height: 38px;
    background: var(--color1);
    border: none;
    border-radius: 8px;
    color: var(--color4);
    font-size: 19px;
    font-weight: 500;
}

.iframe-mapa {
    width: 100%;
    height: 500px;
}

.div-icons img {
    width: 40px;
    opacity: 42%;
    margin: 0px 10px;
}

/* CONTAINER FOOTER */

footer {
    background-color: var(--color1);
}

.div-footer-2 {
    display: flex;
    gap: 22px;
    padding-bottom: 18px;
}

.div-footer-1 img {
    width: 90px;
}

.div-footer-1 h2 {
    color: var(--color4);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    max-width: 367px;
    padding-bottom: 13px;
}

.ul-text-footer-1 li a {
    color: var(--color4);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    max-width: 367px;
}

.div-footer-1 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.div-footer-text-2 h2 {
    color: var(--color4);
    font-size: 18px;
    padding-bottom: 5px;
}

.div-footer-text-2 ul a {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.div-footer-text-2 ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.div-footer-text-2 ul li {
    color: var(--color4);
    font-weight: 200;
    font-size: 18px;
}

.div-footer-text-3 ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.div-footer-text-3 ul li {
    font-size: 18px;
}

.div-footer-text-3 h2 {
    color: var(--color4);
    font-size: 18px;
    padding-bottom: 5px;
}

.div-footer-text-3 ul li {
    color: var(--color4);
    font-weight: 200;
}

.container-footer {
    width: 93%;
    margin: 1px auto;
}

.div-footer-1 {
    padding: 14px 0px;
}

footer h3 {
    color: var(--color4);
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    padding: 14px 0px 15px;
    border-top: 1px solid white;
}

@media (min-width: 600px) {

    .bk-banner {
        background-image: url(/img/close-up-smiling-person-conference-room.jpg);
    }

    .div-bk-banner {
        padding: 0px 5px;
        width: 1000px;
        margin: 0 auto;
    }

    .bk-banner h1 {
        font-size: 35px;
        color: var(--color4);
        font-weight: 500;
        max-width: 369px;
    }

    .bk-banner h2 {
        color: var(--color4);
        font-weight: 500;
        line-height: 19px;
    }


    /* container container */

    .container-contatos {
        display: flex;
        justify-content: space-around;
        padding: 75px 15px;
    }

    .div-contatos {
        padding: 0px;
    }

    .formulario {
        margin: 0px;
        width: 500px;
    }

    .div-contatos p {
        font-size: 17px;
        line-height: 30px;
        padding: 20px 0px 20px;
        max-width: 444px;
    }

    .div-contatos h2 {
        font-size: 32px;
        width: 453px;
        font-weight: 500;
        line-height: 35px;
        padding: 4px 0px;
    }

    /* container footer */

    .container-footer {
        margin: 1px auto;
        display: flex;
        justify-content: space-around;
        max-width: 1100px;
        padding: 25px 0px;
    }

    .div-footer-1 {
        padding: 0px 0px;
    }

    .div-footer-1 h2 {
        padding: 13px 0px;
    }

    footer h3 {
        width: 500px;
        margin: 0 auto;
    }

}