@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --clr-1: #80231F;
    --clr-dark: hsl(347, 35%, 20%);
}

.btn {
    cursor: pointer;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: fit-content;
    padding: 10px 60px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--clr-1);
    transition: .3s ease-in-out;
    text-align: center;
}
.btn-2 {
    background-color: var(--clr-1);
    color: white;
}
.btn:hover, .btn:focus-visible {
    transform: scale(1.05);
}

#whats-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 100%;
    background: #25D366;
    box-shadow: 0 0 7.5px rgba(0,0,0,.3);
}
#whats-btn svg {
    height: 30px;
    width: 30px;
    color: white;
}

body {
    position: relative;
}

header {
    background-image: url(./assets/img/banner.png);
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
    position: relative;
    z-index: 0;
}
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-dark);
    z-index: -1;
    opacity: .8;
}
header > * {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
header > * > .logo {
    width: 200px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
header > * > h2 {
    font-weight: normal;
}
header > * > h2 > span {
    font-weight: bold;
}
header h1 {
    font-size: 31px;
}
header h2 {
    font-size: 24px;
}

section {
    padding: 100px 0;
    background-color: white;
}
section.bg-gray {
    background-color: #f1f2f3;
}
section h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--clr-1);
}
section p {
    text-align: justify;
}


#sobre {
    position: relative;
}
#sobre > div > div > div > img {
    border-radius: 5px;
    width: 100%;
}

#visao-missao-valores {
    text-align: center;
    padding: 50px 0;
}
.visao-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.visao-item svg {
    font-size: 24px;
}
.visao-item h3 {
    color: var(--clr-1);
}
.visao-item p {
    text-align: center;
}

#beneficios {
    text-align: center;
    position: relative;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
    opacity: 0.0275;
}

#beneficios h3 {
    margin-bottom: 20px;
}
#beneficios p {
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}
.beneficio {
    text-align: center;
}
.beneficio svg {
    font-size: 24px;
    color: var(--clr-1);
}
.beneficio h4 {
    margin-top: .5em;
    text-transform: uppercase;
    font-size: 14px;
}

#cta {
    background-color: var(--clr-1);
    color: white;
    padding: 50px 0;
    text-align: center;
}
#cta > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#cta h3 {
    color: white;
}
#cta h4 {
    margin-bottom: 20px;
}

#faq h3 {
    margin-bottom: 20px;
    font-size: 24px;
}
#faq h4 {
    color: var(--clr-1);
    font-style: italic;
    margin-bottom: 5px;
}

#parceiros {
    background: black;
    color: white;
    text-align: center;
    padding: 50px 0;
}
#parceiros h3 {
    margin-bottom: 20px;
}
#parceiros p {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}
#parceiros .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
#parceiros .logos a {
    display: block;
    width: 100%;
    max-width: 200px;
}
#parceiros .logos a:nth-of-type(1) {
    max-width: 100px;
}
#parceiros .logos a img {
    width: 100%;
}


#parceiros h3 {
    color: white;
}

footer .footer {
    padding: 100px 0;
}

footer .footer h3 {
    font-size: 24px;
}
footer .footer form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer form > input:not([type="submit"]), footer .footer form > textarea {
    border: none;
    outline: none;
    border: 1px solid lightgray;
    padding: 10px;
    border-radius: 5px;
}
footer .footer form > textarea {
    resize: none;
}

footer .copyright {
    text-align: center;
    color: white;
    background-color: black;
    font-size: 14px;
    padding: 10px 0;
}