* {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    box-sizing: border-box;
}

body {
    /* Melhora renderização de texto */
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #1E1E1E;
    color: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
    background-color: #FFF;
}

.apresentacao {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: black;
    z-index: 1;
}

.img-fullscreen {
    width: 100vw;
    height: max-content;
    margin: -25% 0;
    position: absolute;
    top: 25%;
    opacity: 0.17;
    z-index: -1;
}
nav {
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-aliada {
    margin: 12px 0;
}

.div-menu {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-menu input {
    width: 25rem;
    height: 34px;
    background-color: transparent;
    border: solid white 1px;
    border-radius: 26px;
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.div-menu label {
    position: relative;
    right: -11.8rem;
    top: 11px;
}

.div-menu label img {
   height: 50px;
}

.div-menu-itens {
    display: flex;
    margin-top: 15px;
}

.div-menu-itens ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.div-menu-itens ul li a {
    color: white;
    font-size: 0.9rem;
}

.div-menu-itens ul li a::before {
    content: '';
    background: white;
    display: block;
    position: relative;
    bottom: -22px;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.div-menu-itens ul li a:hover::before {
  width: 100%;
}

.div-icones {
    height: 100%;
    margin: auto 0 auto auto;
}

.div-icones ul {
    list-style: none;
    display: flex;
    gap: 8px;
}


h1, h2 {
    font-weight: 200;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 1.4rem;
}

.fontw-900 {
    font-weight: 900;
}

.fontw-700 {
    font-weight: 700;
}

.fontw-600 {
    font-weight: 600;
}

.fontw-300 {
    font-weight: 300;
}

.fontw-200 {
    font-weight: 200;
}


.titulo {
    margin-top: 100px;
    text-align: center;
}

.card-container {
    margin-top: 100px;
    background-color: #FFFFFFB2;
    color: #053048;
    padding: 40px;
    max-width: 85%;
    display: flex;
    align-items: center;
    position: relative;
}

.profile-container {
    position: absolute;
    transform: translateY(-50%);
    bottom: -50px;
    width: 220px;
    height: 220px;
    border-radius: 10px;
}

.profile-container img {
    width: 240px;
    height: 330px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #053048;
}

.card-conteudo {
    margin-left: 250px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 220px;
}

.card-conteudo blockquote {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    width: 60%;
}

.author-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.author-title {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.solicite-proposta {
    margin-top: 100px;
    background: 
        linear-gradient(rgba(0,0,0, 0.8), rgba(0,0,0, 0.8)),
        url(../img/fundo-form-contatenos.png);    
    background-repeat: no-repeat;
    background-size: 120%;
    background-position: right top;
    height: 100vh;
    width: 100%;
}

.titulo-form p{
    width: 700px;
    font-size: 55px;
}

.solicite-proposta > form {
    padding: 60px;
    gap: 10px;
}

.solicite-proposta > form > h1 {
    width: fit-content;
    color: white;
    margin: 0 auto;
}

.solicite-proposta > form input, textarea {
    background-color: #91D7FF80;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    resize: none;
}

.solicite-proposta > form input::placeholder, textarea::placeholder {
    color: #FFFFFFCC;
}

.solicite-proposta > form button {
    background-color: #FFFFFFCC;
    color: #053048;
    padding: 15px 20px;
    border-radius: 10px;
    width: calc(50% - 5px);
    font-weight: 700;
    font-size: 1.1rem;
    align-self: baseline;
}

@media(max-width: 1699px) {
    .card-conteudo blockquote {
        font-size: 1rem;
    }

    .author-name {
        font-size: 2rem;
    }

    .author-title {
        font-size: 1rem;
    }

    .titulo-form {
        padding-left: 100px;
    }

    .titulo-form p {
        font-size: 35px;
    }
}

@media(max-width: 1299px) {
    #form {
        display: flex;
        flex-direction: column;
    }

    .titulo-form {
        padding-left: 0px;
    }

    .titulo-form p {
        text-align: center;
    }
}

@media(max-width: 1199px) {
    .card-conteudo {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        margin-left: 300px;
    }

    .card-conteudo blockquote {
        width: 100%;
        font-size: 13px;
        float: right;
        clear: left;
    }
    
    .retangulo-cinza {
        display: none;
    }

    .solicite-proposta {
        background-position: right;
        background-size: 250%;
    }
}

@media(max-width: 869px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        margin-top: 80px;
    }

    .profile-container {
        position: static;
        transform: none;
        width: 180px;
        height: auto;
        margin-bottom: 20px;
    }

    .profile-container img {
        width: 180px;
        height: auto;
    }

    .card-conteudo {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        height: auto;
        text-align: center;
    }

    .card-conteudo blockquote {
        width: 100%;
        font-size: 1rem;
    }

    .author-name {
        font-size: 2rem;
    }

    .author-title {
        font-size: 1rem;
    }

    .titulo-form p{
        text-align: center;
       width: auto;
       font-size: 2rem;
    }
}

@media (orientation: portrait) and (max-width: 767px) {

    .titulo {
        max-width: 90%;
        margin: 50px auto 0;
    }

    .solicite-proposta form {
        padding: 40px;
    }

}

@media(max-width: 575px) {
    .logo-aliada {
        width: 40px;
    }

    .div-icones ul li img {
        width: 1.5rem;
    }

    .div-icones ul {
        gap: 4px;
    }
    .titulo-form {
        max-width: 80%;
    }
    .solicite-proposta {
        background-position: right;
        background-size: 400%;
    }
}

@media (max-width: 448px) {
    .titulo h1 {
        font-size: 3rem;
    }

    .titulo h2 {
        font-size: 1.2rem;
    }
}

@media(max-width: 405px) {
    .solicite-proposta > form button {
        font-size: 1rem;
        padding: 10px;
    }
}

