:root {
    --texto: #111;
    --destaque: #d73a44;
    --footer-text: #8a8a8a;
    --link-nav: #224B5C;
    --footer-back: #f2f2f2;
}

/* azul = #1d91bf
    vermelho = #d73a44 */

body {
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
}

p,
h2 {
    color: var(--texto);
}

#header-mobile,
#header-desktop {
    position: fixed;
    left: 0;
    top: 0;
    font-family: 'Kanit', sans-serif;
    background-color: white;
    z-index: 10;
}

#mobile-nav-modal {
    height: 92.5vh;
    background-color: white;
    width: 100vw;
    position: fixed;
    bottom: 0;
    display: none;
    z-index: 10;
}

.responsive-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.responsive-container img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.image-text {
    position: absolute;
    top: 80px;
    left: 10px;
    color: white;
    /*#1d91bf;*/
    font-family: 'Public Sans', sans-serif;
    font-size: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 40%;
    overflow-wrap: break-word;
    text-align: left;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--link-nav);
    cursor: pointer;
}

.hover-underline-animation a {
    color: var(--link-nav);
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0087ca;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.texto-destaque {
    color: var(--destaque);
}

#corpo-principal {
    background-color: #f5f5f5;
    padding: 5vmax 5vmax;
}

#corpo-principal>div>div p {
    font-size: 1.3rem;
    line-height: 1.35;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 0px 100%, 100% 100%;
    background-size: 0px 8%, 100% 8%;
    transition: background-size 0.2s ease-in-out 0s;
    background-image: linear-gradient(120deg, rgb(130, 10, 209) 0%, rgb(130, 10, 209) 100%), linear-gradient(120deg, transparent, transparent);
}

#corpo-principal>div>div p:hover {
    text-decoration: none;
    background-size: 100% 8%, 100% 8%;
}

footer {
    background-color: var(--footer-back);
}

.footer-menu-title,
#footer-linha2 p {
    font-family: 'Public Sans', sans-serif;
    color: var(--footer-text);
}

.footer-menu-option {
    font-family: sans-serif;
    font-weight: bolder;
}

.footer-menu-option a {
    color: var(--footer-text);
    cursor: pointer;
}

.footer-menu-option a:hover {
    color: var(--destaque);
    cursor: pointer;
}

@media only screen and (min-width: 900px) {
    nav {
        height: 8vh;
        width: 100vw;
        border-bottom: 1px solid #d5d5d5;
    }

    nav>div {
        width: 70vw;
    }

    nav>div p {
        margin: 0;
        font-family: 'Kanit', sans-serif;
    }

    nav img {
        height: 5vh;
    }

    .texto-destaque {
        color: var(--destaque)
    }

    #header-mobile {
        display: none;
    }

    #corpo-principal>div>div {
        width: 33%;
    }

    #corpo-principal h2 {
        font-size: 1.5rem;
        font-family: 'Public Sans', sans-serif;
        width: 100%;
    }

    #corpo-principal img {
        width: 50%;
    }


    .footer-menu-title {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .footer-menu-option {
        color: var(--footer-text);
    }

    .footer-tile {
        width: 100%;
    }

    #footer-menu1 {
        padding: 56px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        border-bottom: 1px solid rgb(53 53 53);
    }

    #footer-linha2 {
        padding-left: 10vmax;
        padding-right: 10vmax;
        height: 25vh;
    }

    #footer-linha2 img {
        height: 66%;
        aspect-ratio: 1/1;
    }

    #footer-linha2 p {
        color: var(--footer-text);
        font-family: 'Public Sans', sans-serif;
        font-size: 1rem;
    }

}

@media only screen and (max-width: 900px) {
    .responsive-container {
        width: 100%;
        height: 150px;
        overflow: hidden;
        margin-top: 50px;
        position: relative;
    }

    .responsive-container img {
        min-width: auto;
        min-height: auto;
        width: 100%;
    }

    .image-text {
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: white;
        /*#1d91bf;*/
        font-family: 'Public Sans', sans-serif;
        font-size: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        max-width: 50%;
        overflow-wrap: break-word;
        text-align: left;
    }


    #corpo-principal>div {
        flex-direction: column;
    }

    #corpo-principal>div>div {
        width: 100%;
    }

    #corpo-principal h2 {
        font-size: 1rem;
        font-family: 'Public Sans', sans-serif;
        width: 100%;
    }

    #corpo-principal img {
        width: 100%;
    }


    #header-desktop {
        display: none;
    }

    #header-mobile {
        width: 100vw;
        height: 7.5vh;
        border-bottom: #111 solid 1px;
    }

    #mobile-nav-modal {
        height: 92.5vh;
        background-color: white;
        width: 100vw;
        position: fixed;
        bottom: 0;
        display: none;
    }

    #mobile-nav-modal a p {
        font-size: 2rem;
        margin-left: 5vmax;
        font-family: 'Kanit', sans-serif;
    }

    #header-mobile nav {
        width: 90vw;
        height: 100%;
    }

    #header-mobile nav img {
        height: 80%;
    }

    #header-mobile button {
        background-color: transparent;
        border: 0;
    }

    #header-mobile button svg {
        height: 7.5vh;
        width: 7.5vh;
    }


    .footer-menu-title {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .footer-menu-option {
        font-family: sans-serif;
    }

    .footer-tile {
        width: 100%;
    }

    #footer-menu1 {
        padding: 56px;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgb(53 53 53);
    }

    #footer-linha2 {
        padding-top: 5vmax;
        padding-left: 10vmax;
        padding-right: 10vmax;
        height: 25vh;
        flex-direction: column;
        align-items: flex-start;
    }

    #footer-linha2 img {
        height: 20%;
        aspect-ratio: 1/1;
    }

    #footer-linha2 p {
        color: var(--footer-text);
        font-family: 'Public Sans', sans-serif;
        font-size: 1rem;
    }
}

.fullscreen {
    width: 100vw;
    height: 100vh;
}

.center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical {
    display: flex;
    flex-direction: column;
}

.horizontal {
    display: flex;
    flex-direction: row;
    display: inline-block;
}

.horizontal-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.central-text {
    text-align: center;
}

.w100 {
    width: 100%;
}

.w90 {
    width: 90%;
}

.w80 {
    width: 80%;
}

.w70 {
    width: 70%;
}

.w60 {
    width: 60%;
}

.w50 {
    width: 50%;
}

.w40 {
    width: 40%;
}

.w30 {
    width: 30%;
}

.w20 {
    width: 20%;
}

.w10 {
    width: 10%;
}

.full-width {
    width: 100vw;
}

.full-height {
    height: 100vh;
}

.space-around {
    justify-content: space-around;
}

.space-evenly {
    justify-content: space-evenly;
}

.space-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}