@charset "utf-8";
/* CSS Document */
body, html {
    font-size: 10px;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

.color-blue {
    color: #0095DA;
}

.color-default {
    color: #333333;
}

.color-white {
    color: #FFFFFF;
}

.color-black {
    color: #000000;
}

.text12 {
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.text14 {
    font-size: 1.4rem;
    line-height: 2rem;
}

.text16 {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.text18 {
    font-size: 1.8rem;
    line-height: 2.4rem;
}

.text20 {
    font-size: 2rem;
    line-height: 2.6rem;
}

.title-massive {
    font-size: 6.2rem;
    line-height: 6.2rem;
}

.title-big {
    font-size: 4.1rem;
    line-height: 4.1rem;
}

.title-large {
    font-size: 3.2rem;
    line-height: 3.2rem;
}

.title-regular {
    font-size: 2.8rem;
    line-height: 2.8rem;
}

.title-small {
    font-size: 2.4rem;
    line-height: 2.4rem;
}

.title-tiny {
    font-size: 2rem;
    line-height: 2rem;
}

/* Fonts */
.inter-Regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-Bold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.gabarito-SemiBold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.gabarito-Bold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.gabarito-ExtraBold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

/* Main Image */
.main-image-container {
    width: 100%;
    height: 100vh;
    background: url(../images/main_image03.jpg) no-repeat top left;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-shadow {
    box-sizing: border-box;
    text-shadow: 0 .2rem 1rem rgba(0, 0, 0, .15);
}

/* Buttons */
.buttons-container {
    background: #FFFFFF;
    padding: 1rem 2rem 1.6rem 2rem;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: border .5s ease, background .5s ease;
}

.buttons-container .buttons-title {
    text-decoration-line: underline;
    text-underline-offset: .4rem;
    text-decoration-color: #AAAAAA;
    transition: color .5s ease, text-decoration-color .5s ease;
}

.buttons-container:hover {
    cursor: pointer;
    border: 1px solid #0095DA;
    background: #0095DA;
}

.buttons-container:hover .buttons-title {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

.buttons-title {
    font-size: 2rem;
    line-height: 2.8rem;
}
