* {
    margin: 0;
    padding: 0;
    list-style-type: none !important;
    text-decoration: none !important;
}

body, main {
    overflow-x: hidden;
}

body {
    background-image: linear-gradient(135deg, #FFF 0%, #FFF 30%, #E2E2E2 100%);
    scroll-behavior: smooth;
}

.row {
    width: 100% !important;
    margin: 0 auto !important;
}

main .row, .painel-container {
    padding: 6.66vw 15.62vw;
}

main > .row:last-child {
    padding-bottom: 13.33vw;
}


/*Fonts config*/
@font-face {
    font-family: 'Segoe UI Regular';
    src: local('../font/Segoe UI Regular'), url('../font/Segoe UI.woff');
}

@font-face {
    font-family: 'Segoe UI Semibold';
    src: local('../font/Segoe UI Semibold'), url('../font/Segoe UI semibold');
}

@font-face {
    font-family: 'Segoe UI Bold';
    src: local('../font/Segoe UI Bold'), url('../font/Segoe UI Bold.woff');
}

@font-face {
    font-family: 'Renogare Regular';
    src: local('../font/Renogare Regular'), url('../font/Renogare-Regular.otf');
}

.fw-light {
    font-weight: 200;
    font-family: 'Segoe UI Regular';
}

.fw-regular {
    font-weight: 400;
    font-family: 'Segoe UI Regular';
}

.fw-semibold {
    font-weight: 600;
    font-family: 'Segoe UI Semibold';
}

.fw-bold {
    font-weight: 700;
    font-family: 'Segoe UI Bold';
}

.f-renogare {
    font-weight: 400;
    font-family: 'Renogare Regular';
}

.uppercase {
    text-transform: uppercase;
}

.fc-yellow {
    color: #FECF00;
}

.fc-orange {
    color: #FF8800;
}

.fc-blue {
    color: #0098DA;
}

.fc-blue-marine {
    color: #3E4095;
}

.fc-black {
    color: #2D2D2D;
}

.fc-grey {
    color: #5E5E5E;
}

.fc-white {
    color: #fff;
}

.fs-96 {
    font-size: 82px;
}

.fs-64 {
    font-size: 64px;
}

.fs-32 {
    font-size: 32px;
}

.fs-24 {
    font-size: 24px;
}

.fs-21 {
    font-size: 21px;
}


/*Buttons*/
.btn-primary, .btn-secondary, .btn-orange, .btn-blue {
    padding: 16px 48px;
    border-radius: 50px;
    outline: none;
    border: none;
    background-color: transparent;
    transition: 250ms ease-in-out;
}

.btn-primary {
    background-color: #fff;
    color: #0098DA;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn-orange {
    background-color: #FF8800;
    box-shadow: 0 0 0 rgba(255, 136, 0, 0);
    color: #fff;
}

.btn-blue {
    background-color: #0098DA;
    color: #fff;
}

.btn-primary:hover {
    background-color: #FF8800;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0098DA;
}

.btn-orange:hover {
    box-shadow: 0 0 24px rgba(255, 136, 0, .85);
}

.btn-blue:hover {
    background-color: #FF8800;
}


/*Header*/
header {
    width: 100%;
    padding: 32px 64px;
    background-image: linear-gradient(90deg, #0098DA, #00a3e9);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999 !important;
    animation: headerAnim 750ms ease;
}

    header .logo img {
        width: auto;
        max-height: 64px;
        height: 10vw;
        min-height: 32px;
    }

    header nav {
        gap: 32px;
        margin-left: 128px;
    }

    header .btn-group {
        gap: 16px;
        margin-left: auto;
    }

    .menu-mob, header .btn-menu-mob {
        display: none;
    }


/*Footer*/
footer {
    padding: 6.66vw 13.33vw;
    background-color: #0098DA;
}

    footer .logo img {
        height: 4vw;
        max-height: 64px;
        min-height: 32px;
        margin-bottom: 1rem;
    }

    footer .f-renogare {
        margin-bottom: 10px;
    }

    footer .d-flex {
        padding-left: 0;
    }

    footer .location {
        margin-bottom: 24px;
    }

        footer .location img {
            width: 1.5vw;
            max-width: 21px;
            min-width: 10px;
            height: auto;
            margin-right: 2px;
        }

    footer .social-media {
        gap: 16px;
    }

        footer .social-media img {
            width: 2vw;
            max-width: 32px;
            min-width: 21px;
            height: auto;
        }


/*Wpp button*/
.wpp-btn {
    position: fixed;
    bottom: 64px;
    right: 64px;
    transition: 250ms ease-in-out;
    z-index: 999 !important;
}

    .wpp-btn img {
        width: 4vw;
        max-width: 64px;
        min-width: 48px;
        height: auto;
    }

    .wpp-btn:hover {
        transform: scale(1.15);
    }


/*Anims hover*/
@keyframes headerAnim {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.opacity-anim {
    cursor: pointer;
    transition: 250ms ease-in-out;
}

    .opacity-anim:hover {
        opacity: .7 !important;
    }

.input-group input, .input-group img {
    transition: 350ms ease-in-out;
    transform-origin: center left;
}

    .input-group:hover input, .input-group input:focus {
        transform: scale(.9);
    }

        .input-group:hover input, .input-group input:focus, .input-group:hover img, .input-group input:focus + span img {
            opacity: .7;
        }


/*Responsive*/
@media screen and (max-width: 1920px) {
    .fs-96 {
        font-size: 5vw;
    }

    .fs-64 {
        font-size: 3.32vw;
    }

    .fs-32 {
        font-size: 1.66vw;
    }

    .fs-24 {
        font-size: 1.25vw;
    }

    .fs-21 {
        font-size: 1.09vw;
    }
}

@media screen and (max-width: 1700px) {
    header nav {
        gap: 1.66vw;
        margin-left: 3vw;
    }
}

@media screen and (max-width: 1400px) {
    .fs-96 {
        font-size: 6.63vw;
    }

    .fs-64 {
        font-size: 5.55vw;
    }

    .fs-32 {
        font-size: 2.77vw;
    }

    .fs-24 {
        font-size: 2.45vw;
    }

    .fs-21 {
        font-size: 1.69vw;
    }

    main .row, .painel-container {
        padding: 6.66vw 64px;
    }

    header {
        justify-content: space-between;
    }

        header .pages, header .btn-group {
            display: none !important;
        }

    .menu-mob {
        display: flex;
    }

    .btn-menu-mob {
        display: block !important;
        border: none;
        outline: none;
        background-color: transparent;
    }

        .btn-menu-mob img {
            max-width: 32px;
            width: 5vw;
            min-width: 21px;
            height: auto;
            object-fit: contain;
        }

    .menu-mob {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #0098DA;
        z-index: 99999 !important;
        padding: 32px;
        box-sizing: border-box;
        gap: 64px;
        transition: 350ms ease-in-out;
    }

        .menu-mob.close {
            filter: blur(5px);
            transform: translateY(-100%);
        }

        .menu-mob nav, .menu-mob .btn-group {
            gap: 16px;
        }

        .menu-mob .btn-menu-mob {
            position: absolute;
            top: 32px;
            right: 32px;
        }
}

@media screen and (min-width: 768px) {
    footer .col-md-3 {
        width: auto;
        max-width: 25%;
    }
}

@media screen and (max-width: 768px) {
    .fs-96 {
        font-size: 8.33vw;
    }

    .fs-64 {
        font-size: 6.25vw;
    }

    .fs-32 {
        font-size: 3.91vw;
    }

    .fs-24 {
        font-size: 3.16vw;
    }

    .fs-21 {
        font-size: 2.17vw;
    }

    main .row, .painel-container {
        padding: 64px;
    }

    main > .row:last-child {
        padding-bottom: 128px;
    }

    header {
        padding: 21px 32px;
    }

    .menu-mob .btn-group {
        flex-direction: column;
    }

        .menu-mob .btn-group a {
            width: 80%;
            text-align: center;
        }

    footer {
        padding: 64px 13.33vw;
    }

        footer .row {
            align-items: center;
            text-align: center;
            gap: 32px;
            margin: 0 auto;
        }

        footer .col-md-3 {
            padding: 0;
        }

        footer .logo img {
            min-height: 48px;
        }

        footer .social-media {
            justify-content: center;
        }

    .wpp-btn {
        bottom: 32px;
        right: 32px;
    }
}

@media screen and (max-width: 576px) {
    main .row, .painel-container {
        padding: 64px 32px;
    }
}

@media screen and (max-width: 476px) {
    .fs-96 {
        font-size: 11.03vw;
    }

    .fs-64 {
        font-size: 9.45vw;
    }

    .fs-32 {
        font-size: 5.9vw;
    }

    .fs-24 {
        font-size: 4.44vw;
    }

    .fs-21 {
        font-size: 3.88vw;
    }
}
