/* Reset */
* {
    box-sizing: border-box;
}

html {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #ffffff;
    font: 16px/1.5 'montserrat', sans-serif;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
iframe,
svg,
picture {
    display: block;
}

svg {
    fill: currentColor;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-top: 0;
}

figure {
    margin: 0;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    color: inherit;
    outline: none;
}

input:required {
    box-shadow: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
    appearance: none;
}

button {
    border: none;
    background: transparent;
    font: inherit;
    appearance: none;
    cursor: pointer;
}

textarea {
    resize: none;
    font-family: 'montserrat', sans-serif;
    outline: none;
    border: none;
}

:focus {
    outline: none;
}

:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.grecaptcha-badge {
    visibility: hidden;
}

body {
    margin: 0;
}

/* Geral */
.container {
    padding: 0 60px;
    margin: 0 auto;
    max-width: 1370px;
    width: 100%;
}

.img-responsive {
    max-width: 100%;
    display: block;
    height: auto;
}

.img-cover,
.img-contain {
    display: block;
    width: 100%;
    height: 100%;
}

.img-cover {
    object-fit: cover;
}

.img-contain {
    object-fit: contain;
}

.text {
    font-size: 28px;
    font-family: "Montserrat";
    color: rgb(20, 20, 20);
    line-height: 1.379em;
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 0 0;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
}

footer .site-url {
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 20px;
    color: #0f3b60;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
    text-decoration: none;
}

footer .logos {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer .logo-img {
    height: auto;
    max-width: 300px;
}

footer .copyright {
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .copyright .text-copyright {
    font-family: "Montserrat";
    font-size: 14px;
    color: #666;
}

footer .copyright .logo-iwwa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {

    /* Geral */
    .container {
        padding: 0 20px;
    }

    .text {
        font-size: 18px;
    }

    .text br {
        display: none;
    }

    /* Footer */
    footer {
        padding: 30px 0 0;
    }

    footer .logos {
        flex-direction: column;
        gap: 30px;
    }

    footer .site-url {
        font-size: 18px;
    }

    footer .logo-img {
        max-width: 220px;
    }

    footer .copyright {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 0;
    }

    footer .copyright .text-copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Geral */
    .text {
        font-size: 16px;
    }

    /* Footer */
    footer .site-url {
        font-size: 14px;
    }
}