:root {
    /* Fontes */
    --fonte-assertive: 'Inria Sans', sans-serif;
    --primary-font: 'Inria Sans', sans-serif;
    --secondary-font: 'League Spartan', 'Inria Sans', sans-serif;

    /* Cores */
    --primary-blue: #15194B;
    --secondary-blue: #0994B4;
    --third-blue: #000760;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Parte Thales */

.dropdown-hover-forced {
  opacity: 1 !important;
  transform: translateX(-50%) scale(1) !important;
}

#sobreNos-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    justify-content: center;
    color: white;
}

.sobreNos-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.5); 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
}

section#sobreNos-hero {
    background: url('../imgs/cidade-alt-4.png') no-repeat center center/cover;
    background-position: center left;
    display: flex;
    height: 100vh;
    justify-content: left;
    padding: 2em;
}

section#sobreNos-hero .sobreNos-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding-top: 12vh;
    margin-top: 5vh;
    margin-left: 2vw;
}

section#sobreNos-hero .sobreNos-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5em;
    max-width: 30vw; 
    background-color: rgba(0, 4, 57, 0.22);
    backdrop-filter: blur(2px);
    border-radius: 1.25em;
    color: white;
    font-family: var(--fonte-assertive);
    /* animação de entrada */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateX(-1.25em);
    animation: fadeInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

.sobreNos-hero-content:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 .5em 1.25em rgba(0, 0, 0, 0.3);
}

.sobreNos-hero-title {
    font-size: 2.5em;
    color: white;
    font-family: var(--fonte-assertive);
    font-weight: bold;
    margin-bottom: 1.5em;
    max-width: 30vw;
    animation-delay: 0.2s;
}

.sobreNos-hero-content p {
    font-size: 1.5em;
    line-height: 1.2;
}

.sobreNos-fade-in-left {
    opacity: 0;
    transform: translateX(-1.25em);
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* end parte Thales */

/* Parte Murillo */

.sobreNos-how-the-work {
    margin: 0 auto;
    max-width: 75em;
    padding-bottom: 3em;
    padding-top: 12em;
    text-align: center;
}

.sobreNos-how-the-work h2 {
    color: var(--primary-blue);
    font: normal bold 4em var(--primary-font);
    text-align: center;
}

.sobreNos-how-the-work-cards-container {
    align-items: center;
    display: flex;
    gap: 2.5em;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 8em 2em 4em;
}

.sobreNos-how-the-work-cards-container,
.sobreNos-how-the-work-cards-container > li {
    list-style: none;
}

.sobreNos-how-the-work-card,
.sobreNos-mvv-card {
    background-color: var(--primary-blue);
    border-radius: 1em;
    box-shadow: 0px .25em .25em rgba(0, 0, 0, .25);
    color: white;
    font-size: 1.2em;
    padding: 2em;
}

.sobreNos-how-the-work-card {
    flex: 1;
    height: 24em;
    max-width: 22em;
}

.sobreNos-how-the-work-card h3 {
    font-size: 1.6em;
    margin-bottom: 2.5em;
}

.sobreNos-how-the-work-card p {
    text-align: left;
}

.sobreNos-how-the-work button {
    background-color: var(--third-blue);
    border: none;
    border-radius: 1em;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    margin: 1em;
    padding: 1em 3em;
    transition: background-color .2s, scale .2s;
}

.sobreNos-how-the-work button:hover {
    background-color: var(--secondary-blue);
    cursor: pointer;
    scale: 1.1;
}

.sobreNos-how-the-work button:active {
    background-color: black;
    scale: 1;
}

.sobreNos-who-we-are {
    color: var(--primary-blue);
    font-size: 1.2em;
    max-width: 75em;
    margin: auto;
}

.sobreNos-who-we-are h2 {
    color: var(--primary-blue);
    font: normal bold 4em var(--primary-font);
    text-align: center;
}

.sobreNos-who-we-are-introduction {
    font-weight: 600;
    margin: 10em 2em 6em;
    position: relative;
}

.sobreNos-who-we-are-introduction::before,
.sobreNos-who-we-are-introduction::after {
    content: '';
    display: block;
    height: 4em;
    width: 4em;
}

.sobreNos-who-we-are-introduction::before {
    border-left: 1px solid var(--secondary-blue);
    border-top: 1px solid var(--secondary-blue);
    position: absolute;
    top: -2em;
}

.sobreNos-who-we-are-introduction::after {
    border-right: 1px solid var(--secondary-blue);
    border-bottom: 1px solid var(--secondary-blue);
    position: absolute;
    right: 0;
    bottom: -2em;
}

.sobreNos-who-we-are-introduction p {
    font-size: 1em;
    margin: 3em;
    text-align: left;
}

.sobreNos-mvv {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10em;
    max-width: 75em;
    margin: auto;
    text-align: center;
}

.sobreNos-mvv-title {
    color: var(--primary-blue);
    font: normal bold 4em var(--primary-font);
    margin: 10rem auto 5rem;
    text-align: center;
}

.sobreNos-mvv-img-container {
    padding-top: 5em;
}

.sobreNos-mvv-image {
    width: 11.875em;
}

.sobreNos-mvv-cards-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2em;
    margin-top: 2em;
}

.sobreNos-mvv-card {
    border-radius: .5em;
    font-size: 1.3em;
    font-weight: bold;
    list-style-type: none;
    width: 36em;
}

.sobreNos-mvv-card h3 {
    font-size: 2em;
    font-family: var(--secondary-font);
    margin-bottom: 1em;
}

.sobreNos-mvv-second-card {
    margin-left: 13em;
}

.sobreNos-mvv-line {
    background-color: var(--primary-blue);
    border-radius: .375em;
    height: .375em;
    position: absolute;
}

.sobreNos-mvv-first-line {
    transform: rotateZ(-45deg) translateY(-1.875em) translateX(15.625em);
    width: 13.75em;
}

.sobreNos-mvv-second-line {
    transform: translateY(-5.625em) translateX(11.875em);
    width: 26.25em;
}

.sobreNos-mvv-third-line {
    transform: rotateZ(45deg) translateY(-5.625em) translateX(8.125em);
    width: 13.75em;
}

.sobreNos-mvv-end-message {
    color: var(--primary-blue);
    margin: 10em auto;
    text-transform: uppercase;
}

.sobreNos-mvv-end-message p {
    font-family: var(--secondary-font);
}

.sobreNos-mvv-end-message p:first-child {
    font-size: 1.4em;
    font-weight: lighter;
    margin-bottom: 1em;
}

.sobreNos-mvv-end-message p:last-child {
    font-size: 2.2em;
    font-weight: bold;
}

@keyframes sobreNos-visible-block {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
  .sobreNos-visible-block-animation {
    animation: sobreNos-visible-block 1s ease-in-out;
  }
}

/* end parte Murillo */

/* Parte Renan */
.sobreNos-founders h1 {
    font-size: 3rem;
}

.sobreNos-founders h1,
h2,
h3,
p {
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    text-align: center;
}

.sobreNos-founders h2,
h3 {
    font-weight: 700;
    font-size: 38px;
    text-align: center;
}

.sobreNos-founders h3 {
    font-weight: 400;
}

.sobreNos-founders .sobreNos-blue-card p {
    font-weight: 100;
    font-size: 26px;
}

.sobreNos-information-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    gap: 40px;
}

.sobreNos-information-container p {
    display: block;
    font-size: clamp(18px, 1.1vw, 50px);
    line-height: 1.6;

}

.sobreNos-inria-sans-bold {
    font-weight: 700;
}

.sobreNos-white-section {
    background-color: white;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sobreNos-section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0;
}

.sobreNos-section-title {
    font-size: 42px;
}

.sobreNos-grid-container-socio1 {
    max-width: 100%;
    max-height: 1250px;
    width: 1200px;
    display: grid;
    grid-template-columns: 1fr 758px;
    margin-top: 30px;
}

.sobreNos-grid-container-socio1 .sobreNos-blue-card {
    margin-right: 0px;
}

.sobreNos-grid-container-socio1 img {
    display: block;
    width: 356px;
}

.sobreNos-grid-container-socio2 img {
    display: block;
    width: 405px;
}

.sobreNos-grid-container-socio2 {
    margin: 89px 0px 0 0px;
    max-width: 100%;
    width: 1200px;
    display: grid;
    grid-template-columns: 708px 1fr;
    justify-content: space-between;
}

.sobreNos-card-inner{
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .8s ease;
    border-radius: 10px;
}

.sobreNos-title-back-card {
    display: none;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sobreNos-title-back-card > h2,
.sobreNos-title-back-card > h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.sobreNos-flip-card,
.sobreNos-card-container:hover .sobreNos-card-inner,
.sobreNos-card-container:focus-within .sobreNos-card-inner{
    transform: rotateY(180deg);
    cursor: pointer;
}

.sobreNos-card-inner .sobreNos-card{
    position: absolute;
    inset: 0;
    border-radius: inherit;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.sobreNos-front-card{
    background: var(--primary-blue);
    color:#fff;
}

.sobreNos-back-card{
    transform: rotateY(180deg);
    background: linear-gradient(0deg,#fff 65%,#3f99da 100%);
    color: var(--secondary-blue);
}

.sobreNos-back-card p {
    margin: auto auto;
    color: var(--primary-blue);
    text-align: center;
}

.sobreNos-cards-grid .sobreNos-card-container .sobreNos-card-inner .sobreNos-back-card .sobreNos-sc-blue {
    color: var(--secondary-blue);
    font-size: 3rem;
}

.sobreNos-card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: white;
    perspective: 1000px;
    position: relative;
    padding-top: 2rem;
}

.sobreNos-grid-container-socio2 img {
    display: block;
    justify-self: end;
    margin-right: 0px;
}

.sobreNos-contact-spacing {
    height: 20vh;
}

.sobreNos-contact-section h1,
h2 {
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    text-align: left;
    font-weight: 700;
    font-size: 60px;
    color: white;
}

.sobreNos-contact-section h2 {
    font-size: 32px;
}

.sobreNos-contact-section h2 span {
    color: var(--secondary-blue);
}

.sobreNos-contact-section form {
    color: white;
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 22px;
}

.sobreNos-blue-bg {
    position: relative;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.sobreNos-contact-section {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.sobreNos-forms-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.sobreNos-forms-container h1 {
    margin-bottom: 20px;
}

.sobreNos-contact-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: clamp(300px, 80%, 1200px);
    object-fit: cover;
}

.sobreNos-contact-form input {
    width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 5px;
    border-width: 0;
    padding-left: 15px;
}

.sobreNos-contact-form input::placeholder {
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    color: black;
    font-size: 18px;
}

.sobreNos-contact-form textarea {
    width: 100%;
    height: 165px;
    padding: 10px;
    padding-left: 15px;
    border-radius: 5px;
}

.sobreNos-contact-form textarea::placeholder, .sobreNos-contact-form input {
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    color: black;
    font-size: 18px;
}

.sobreNos-contact-form button {
    cursor: pointer;
    background-color: var(--secondary-blue);
    width: 160px;
    height: 45px;
    justify-content: center;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    font-size: 20px;
}

.sobreNos-contact-form {
    width: 82.5%;
}

.sobreNos-contact-form div {
    margin-top: 20px;
}

.sobreNos-contact-form .sobreNos-button-container {
    display: flex;
    justify-content: center;
}

.sobreNos-contact-form div input,
.sobreNos-contact-form div textarea {
    margin-top: 5px;
}

@keyframes sobreNos-flip-card {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}

@media (prefers-reduced-motion: no-preference) {
  .sobreNos-flip-card-animation {
    animation: sobreNos-flip-card .5s ease-in-out;
  }
}

/* end parte Renan */
@media (max-width: 768px) {
    section#sobreNos-hero {
        background-image: url('../imgs/cidade-mobile.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        justify-content: center;
        padding: 1em;
    }

    section#sobreNos-hero .sobreNos-hero-inner {
        align-items: center;
        gap: 1em;
    }

    section#sobreNos-hero .sobreNos-hero-content {
        max-width: 90%;
        padding: 1.5em;
        text-align: center;
    }

    .sobreNos-hero-title {
        font-size: 1.8em;
        max-width: 90%;
        text-align: center;
    }

    .sobreNos-hero-content p {
        font-size: 1em;
    }
}

@media (max-width: 800px) {
    .sobreNos-how-the-work {
        padding-bottom: 4em;
    }

    .sobreNos-how-the-work h2 {
        font-size: 2.2em;
    }

    .sobreNos-how-the-work-cards-container {
        margin-top: 2em;
    }

    .sobreNos-how-the-work-card {
        height: fit-content;
    }

    .sobreNos-who-we-are h2 {
        font-size: 2.2em
    }

    .sobreNos-who-we-are-introduction {
        margin: 4em 1em 6em;
        font-size: 1em;
    }

    .sobreNos-who-we-are-introduction::before {
        top: -1em;
    }

    .sobreNos-who-we-are-introduction::after {
        bottom: -1em;
    }

    .sobreNos-who-we-are-introduction p {
        margin: 1em;
    }

    .sobreNos-mvv-img-container {
        display: none;
    }

    .sobreNos-mvv-cards-container {
        text-align: center;
    }

    .sobreNos-mvv-card {
        width: 90% !important;
        margin: auto !important;
    }

    .sobreNos-mvv-second-card {
        margin: 1em auto;
    }

    .sobreNos-forms-container h1 {
        font-size: 2rem;
    }

    .sobreNos-forms-container h2 {
        font-size: 1.5rem;
    }

    .sobreNos-forms-container label {
        font-size: 1.2rem;
    }

    .sobreNos-contact-form input::placeholder {
        font-size: 1rem;
    }

    .sobreNos-contact-form textarea::placeholder {
        font-size: 1rem;
    }

    .sobreNos-card-inner {
        transform: rotateY(180deg);
    }

    .sobreNos-title-back-card {
        display: block;
    }

    .sobreNos-card-container:hover .sobreNos-card-inner,
    .sobreNos-card-container:focus-within .sobreNos-card-inner{
        transform: none;
        cursor: none;
    }

    .sobreNos-founders .sobreNos-grid-container-socio1,
    .sobreNos-founders .sobreNos-grid-container-socio2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .sobreNos-founders .sobreNos-grid-container-socio2 {
        flex-direction: column-reverse;
    }

    .sobreNos-founders img {
        width: 62%;
        height: auto;
        margin-bottom: 60px;
    }

    .sobreNos-founders .sobreNos-blue-card {
        width: 80%;
        height: max-content;
    }

    .sobreNos-founders .sobreNos-blue-card h2 {
        font-size: 1.75rem;
    }

    .sobreNos-founders .sobreNos-blue-card h3 {
        font-size: 1.5rem;
    }

    .sobreNos-founders .sobreNos-blue-card p {
        font-size: 1.12rem;
    }

    .sobreNos-founders .sobreNos-section-title {
        text-align: center;
        font-size: 3rem;
    }
}

@media (min-width:801px) and (max-width:1200px) {
    .sobreNos-card-inner {
        transform: rotateY(180deg);
    }

    .sobreNos-card-container:hover .sobreNos-card-inner,
    .sobreNos-card-container:focus-within .sobreNos-card-inner{
        transform: none;
        cursor: none;
    }

    .sobreNos-founders .sobreNos-grid-container-socio1,
    .sobreNos-founders .sobreNos-grid-container-socio2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .sobreNos-founders .sobreNos-grid-container-socio2 {
        flex-direction: column-reverse;
    }

    .sobreNos-founders img {
        width: 42%;
        height: auto;
        margin-bottom: 60px;
    }

    .sobreNos-founders .sobreNos-blue-card {
        width: 80%;
    }

    .sobreNos-founders .sobreNos-blue-card h2 {
        font-size: 3rem;
    }

    .sobreNos-founders .sobreNos-blue-card h3 {
        font-size: 2.5rem;
    }

    .sobreNos-founders .sobreNos-blue-card p {
        font-size: 2rem;
    }

    .sobreNos-founders .sobreNos-section-title {
        text-align: center;
        font-size: 4rem;
        margin-bottom: 32px;
    }
}

@media (max-width: 1200px) {
    section#sobreNos-hero .sobreNos-hero-inner {
        padding-top: 8vh;
        margin-top: 3vh;
        margin-left: 2vw;
        gap: 1em;
    }

    section#sobreNos-hero .sobreNos-hero-content {
        max-width: 50vw;
        padding: 2em;
    }

    .sobreNos-hero-title {
        font-size: 2em;
        max-width: 50vw;
    }

    .sobreNos-hero-content p {
        font-size: 1.2em;
    }

    .sobreNos-mvv-img-container {
        width: 16vw;
    }

    .sobreNos-mvv-card {
        width: 60vw;
        z-index: 1;
    }

    .sobreNos-mvv-second-card {
        margin-left: 2em;
    }

    .sobreNos-grid-container-socio1,
    .sobreNos-grid-container-socio2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .sobreNos-grid-container-socio1 img,
    .sobreNos-grid-container-socio2 img {
        margin-bottom: 1rem;
    }

    .sobreNos-card-container {
        position: static;
    }

    .sobreNos-card-container,
    .sobreNos-card-container .sobreNos-card-inner,
    .sobreNos-card-container .sobreNos-card-inner .sobreNos-card {
        height: fit-content;
        width: 95%;
        margin: auto;
    }

    .sobreNos-back-card{
        height: fit-content;
    }

    body .sobreNos-card-container .sobreNos-front-card{
        height: 100% !important;
    }

    .sobreNos-contact-img{
        display: none;
    }

    .sobreNos-blue-bg{
        background-image: url("../imgs/foto-contato-mobile.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .sobreNos-forms-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .sobreNos-forms-container h1 {
        margin: 0 auto;
        text-align: left;
        align-self: flex-start;
    }

    .sobreNos-forms-container h1 span {
        display: block;
        width: max-content;
        margin: 0 auto;
    }

    .sobreNos-forms-container h1 br {
        display: none;
    }

    .sobreNos-forms-container h2 {
        margin-top: 10px;
    }
}

@media (min-width: 1201px) and (max-width: 1600px) { 
    .sobreNos-contact-section {
        max-width: 1100px;
        padding-top: 20px;
    }

    .sobreNos-contact-img {
        width: 70%;
    }

    .sobreNos-contact-section h1 {
        font-size: 45px;
    }

    .sobreNos-contact-section h2 {
        font-size: 24px;
    }

    .sobreNos-contact-form div {
        margin-top: 10px;
    }

    .sobreNos-contact-section form {
        font-size: 18px;
    }

    .sobreNos-forms-container h1 {
        margin-bottom: 5px;
    }

    .sobreNos-contact-form textarea {
        height: 120px;
    }
}

@media (min-width: 1601px) and (min-width: 2200px) {
    .sobreNos-founders h2 {
        font-size: 6rem;
    }

    .sobreNos-founders h3 {
        font-size: 4rem;
    }

    .sobreNos-founders .sobreNos-information-container p {
        font-size: 2.5rem;
    }

    .sobreNos-contact-img {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 70%;
        object-fit:fill
    }

    .sobreNos-founders .sobreNos-grid-container-socio1,
    .sobreNos-founders .sobreNos-grid-container-socio2 {
        display: flex;
        gap: 100px;
        width: auto;
    }

    .sobreNos-grid-container-socio1, .sobreNos-grid-container-socio2 {
        grid-template-columns: 1fr 1fr;
    }

    .sobreNos-grid-container-socio1 img, .sobreNos-grid-container-socio2 img {
        display: block;
        width: 60%;
    }

    .sobreNos-blue-card {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 2rem;
    }

    .sobreNos-grid-container-socio1, .sobreNos-grid-container-socio2{
        width: 100%;
    }

    .sobreNos-white-section {
        max-width: clamp(1200px, 80vw, 2200px);
    }

    .sobreNos-contact-section {
        max-width: clamp(1400px, 80vw, 2600px);
    }

    .sobreNos-contact-section .sobreNos-forms-container h1 {
        font-size: 5rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container h2 {
        font-size: 3rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container input::placeholder,
    .sobreNos-contact-section .sobreNos-forms-container textarea::placeholder  {
        font-size: 2rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container label {
        font-size: 2.5rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container input {
        height: 75px;
    }

    .sobreNos-contact-section .sobreNos-forms-container textarea {
        height: 350px;
    }

    .sobreNos-contact-form button {
        width: 30%;
        height: 60px;
        font-size: 2rem;
        border: 2px solid white;
    }
}

@media (max-width: 2200px) {
    .sobreNos-information-container p {
        font-size: 15px !important;
    }
}

@media (min-width: 1960px) {
    section#sobreNos-hero,
    section.sobreNos-how-the-work,
    section.sobreNos-who-we-are,
    section.sobreNos-mvv,
    section.sobreNos-mvv,
    aside.sobreNos-mvv-end-message {
        font-size: 24px;
    }
}

@media (min-width: 2400px) {
    section#sobreNos-hero,
    section.sobreNos-how-the-work,
    section.sobreNos-who-we-are,
    section.sobreNos-mvv,
    section.sobreNos-mvv,
    aside.sobreNos-mvv-end-message {
        font-size: 32px;
    }
}

@media (min-width: 3200px) {
    section#sobreNos-hero,
    section.sobreNos-how-the-work,
    section.sobreNos-mvv,
    section.sobreNos-mvv,
    aside.sobreNos-mvv-end-message {
        font-size: 40px;
    }

    section.sobreNos-who-we-are {
        max-width: 80vw;
        font-size: 60px;
    }

    .sobreNos-white-section {
        max-width: clamp(2200px, 80vw, 3000px);
    }

    .sobreNos-contact-section .sobreNos-forms-container h1 {
        font-size: 7rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container h2 {
        font-size: 5rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container input::placeholder,
    .sobreNos-contact-section .sobreNos-forms-container textarea::placeholder  {
        font-size: 3rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container label {
        display: block;
        font-size: 4rem;
        margin-bottom: 0rem;
    }

    .sobreNos-contact-section .sobreNos-forms-container input {
        height: 120px;
        padding: 0 0 0 1rem;
        margin: 0;
    }

    .sobreNos-contact-section .sobreNos-forms-container textarea {
        height: 450px;
        padding: 0 0 0 1rem;
        margin: 0;
    }

    .sobreNos-contact-form button {
        width: 30%;
        height: 90px;
        font-size: 3rem;
        border: 4px solid white;
    }

    .sobreNos-contact-form div {
        margin-top: 3rem;
    }
}
