@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,400;0,600;0,800;0,900;1,100;1,400;1,600;1,700;1,900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul[role=list],
ol[role=list] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    line-height: 1.5
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img,
picture {
    max-width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

@media(prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto
    }
    *,
    *::before,
    *::after {
        -webkit-animation-duration: .01ms !important;
        animation-duration: .01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

:root {
    --color-primary-500: hsl(0, 0%, 0%);
    --color-secondary-500: hsl(46, 97%, 55%);
    --color-text: #000;
    --color-text-inverted: #fff;
    --color-gray-1: #333;
    --color-light-gray-1: #DBDBDB;
    --header-height: 100px;
    --container-max-width: 1140px
}

::-webkit-scrollbar {
    width: 16px
}

::-webkit-scrollbar-thumb {
    background: #dadce0;
    background-clip: padding-box;
    border: 4px solid rgba(0, 0, 0, 0);
    border-radius: 0;
    box-shadow: none;
    min-height: 50px
}

::-webkit-scrollbar-track {
    background: none;
    border: none
}

::-moz-selection {
    background-color: hsl(33.8, 100%, 47.1%)
}

::selection {
    background-color: hsl(33.8, 100%, 47.1%)
}

body {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    font-weight: 400;
    font-family: "Inter Tight", sans-serif
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit
}

address {
    margin: 0
}

.page-wrapper {
    flex: 1 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.container {
    padding-left: 20px;
    padding-right: 20px
}

@media(min-width: 1400px) {
    .container {
        max-width: var(--container-max-width)
    }
}

.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .875rem;
    font-weight: bold;
    padding: .5rem 1rem;
    background: none;
    border: none;
    border-radius: 0;
    transition: transform 150ms
}

.c-button:active {
    transform: translateY(3px)
}

.c-button__icon {
    margin-right: .5rem
}

.header {
    background-color: #fff
}

.header .navbar {
    min-height: var(--header-height);
    position: relative;
    padding: 0
}

.header .navbar-nav {
    align-items: center;
    text-align: center
}

@media(min-width: 1200px) {
    .header .navbar-nav {
        align-items: initial;
        text-align: left
    }
}

.header .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1)
}

.header .navbar-toggler-icon {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    z-index: 1
}

@media(min-width: 1200px) {
    .header .navbar-collapse {
        position: static;
        padding: 0;
        box-shadow: initial;
        margin-bottom: 0;
        border-radius: initial
    }
}

.header__logo {
    width: 100%;
    max-width: 230px
}

.header__nav-item {
    margin: .5rem;
    align-self: center;
}

@media(min-width: 1200px) {
    .header__nav-item {
        margin: 0
    }
    .header__nav-item:not(:first-child) {
        margin-left: 1.5rem
    }
}

.header__nav-link {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    white-space: nowrap;
}

/* .header__nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: hsl(33.8, 100%, 47.1%);
    transition: width .3s
} */

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 50%
}

.header__buttons-wrapper {
    display: flex;
    flex-direction: column;
    margin: 1rem auto 0
}

@media(min-width: 1200px) {
    .header__buttons-wrapper {
        margin: 0 0 0 auto;
        flex-direction: row
    }
}

.header__buttons-wrapper .c-button:first-child {
    margin-bottom: .5rem
}

@media(min-width: 1200px) {
    .header__buttons-wrapper .c-button:first-child {
        margin-bottom: 0;
        margin-right: .5rem
    }
}

.footer {
    overflow: hidden;
    padding: 2rem 0;
    color: var(--color-text-inverted);
    background-color: var(--color-primary-500)
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

@media(min-width: 1200px) {
    .footer-nav {
        align-items: flex-start;
        text-align: start
    }
}

.footer-nav__link {
    position: relative;
    font-size: .75rem;
    padding-top: .375rem
}

.footer-nav__link:not(:first-child) {
    margin-top: .5rem
}

/* .footer-nav__link::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: hsl(33.8, 100%, 47.1%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .2s
} */

.footer-nav__link:hover::before {
    width: 20px
}

.footer-nav__link.active::before {
    width: 20px
}

@media(min-width: 1200px) {
    .footer-nav__link::before {
        left: 0;
        transform: translateX(0)
    }
}

.footer__addresses-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

@media(min-width: 1200px) {
    .footer__addresses-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: start
    }
}

.footer-address {
    width: 100%;
    max-width: 160px;
    margin-top: 1.5rem
}

@media(min-width: 1200px) {
    .footer-address {
        margin-top: 0
    }
}

.footer-address__title {
    font-size: .75rem;
    font-weight: bold;
    margin-bottom: .5rem
}

.footer-address__link {
    display: block;
    margin-bottom: .5rem;
    font-size: .75rem;
    transition: color .2s
}

.footer-address__link:hover {
    color: hsl(33.8, 100%, 47.1%)
}

.footer__copyright {
    font-size: .75rem;
    text-align: center;
    margin-top: 1rem
}

@media(min-width: 1200px) {
    .footer__copyright {
        text-align: start;
        margin-top: auto
    }
}

.home-heading {
    color: var(--color-gray-1);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.25rem;
    margin-bottom: 2rem
}

.home-banner__container {
    padding: 0;
    max-width: 100%;
    background-image: url('../../src/assets/images/bg-banner.jpg');
    background-size: cover;
    border-bottom: 10px solid hsl(33.8, 100%, 47.1%);
    padding: 0 50px;
}

.home-banner__container h1 {
    font-size: 3.5rem;
    color: hsl(33.8, 100%, 47.1%);
    font-weight: 900;
    text-shadow: 5px 5px 5px #000;
}

.home-banner__container h5 {
    /* font-size: 3.5rem;
    color: hsl(33.8, 100%, 47.1%);
    font-weight: 900; */
    text-shadow: 5px 5px 5px #000;
}

.btn-primary {
    background-color: hsl(33.8, 100%, 47.1%);
    border-color: hsl(33.8, 100%, 47.1%);
}

.btn-primary:hover {
    background-color: rgb(147, 89, 12);
    border-color: rgb(147, 89, 12);
}

@media(min-width: 1200px) {
    .home-banner__container {
        padding: 0 20px;
    }
}

.home-banner__wrapper {
    color: #fff;
    background: url("../../src/assets/images/home-banner-bg.jpg") no-repeat center center/cover;
    min-height: 450px;
    padding: 3.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

@media(min-width: 1200px) {
    .home-banner__wrapper {
        border-radius: 0;
        padding: 3.75rem;
        align-items: flex-start
    }
}

.home-banner__content {
    position: relative;
    max-width: 670px
}

.home-banner__content::before {
    position: absolute;
    content: url("../../src/assets/images/home-banner-illustration-arrow.svg");
    bottom: -30px;
    right: -170px
}

.home-banner__heading {
    font-size: 2.1875rem;
    font-weight: 700;
    max-width: 550px;
    margin-bottom: 1rem
}

.home-banner__subheading {
    color: hsl(33.8, 100%, 47.1%);
    font-size: 1.5625rem;
    font-weight: 700;
    margin-bottom: 1.875rem
}

.home-banner__text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5625rem
}

.home-banner__text:not(:first-child) {
    margin-top: 1.25rem
}

.home-banner__link {
    font-weight: bold;
    padding: 0;
    font-size: 1rem
}

.home-about {
    padding: 5rem 0
}

.home-about__container {
    padding: 1.875rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media(min-width: 1200px) {
    .home-about__container {
        max-width: 370px;
        margin: 0 auto
    }
}

.home-about__text {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.875rem
}

.home-about__link {
    margin-top: 1.875rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .875rem;
    display: flex;
    align-items: center
}

.home-about__link i {
    margin-right: .5rem
}

.home-about__img-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px
}

.home-about__img {
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 100%;
    background: url("../../src/assets/images/areia-pedra.jpeg") no-repeat left bottom/cover
}

@media(min-width: 1200px) {
    .home-about__img {
        left: 0;
        right: initial;
        margin: 0;
        width: 55vw;
    }
}

.home-services__section {
    padding: 3.75rem 0;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.home-services__section--planning {
    background: url("../../src/assets/images/home-financial-planning-bg.jpg") no-repeat center center/cover
}

.home-services__section--education {
    color: #fff;
    background: url("../../src/assets/images/home-financial-education-bg.jpg") no-repeat center center/cover
}

.home-services__heading {
    font-weight: 700;
    font-size: 2.25rem;
    max-width: 450px;
    margin-bottom: 3rem
}

.home-services__text {
    font-size: .875rem;
    text-align: justify;
    line-height: 1.75rem;
    margin-bottom: 2.5rem
}

.home-differences {
    padding: 5rem 0
}

.home-differences .home-heading {
    max-width: 170px;
    margin-bottom: .75rem
}

.home-differences__card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column
}

.home-differences__card {
    flex: 1;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius:  0;
    color: #fff;
    padding: 2.5rem 1.25rem;
    margin-top: 1.75rem
}

.home-differences__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: linear-gradient(179.87deg, hsla(47deg, 100%, 49%, 0.52) 0.11%, hsla(47deg, 100%, 49%, 0) 143.29%);
    opacity: 0;
    transition: opacity 150ms ease-out
}

.home-differences__card:hover::before {
    opacity: 1
}

.home-differences__card--independence {
    background-image: url("../../src/assets/images/home-differences-card-independence.jpg")
}

.home-differences__card--exclusivity {
    background-image: url("../../src/assets/images/home-differences-card-exclusivity.jpg")
}

.home-differences__card--proximity {
    background-image: url("../../src/assets/images/home-differences-card-proximity.jpg")
}

.home-differences__card--monitoring {
    background-image: url("../../src/assets/images/home-differences-card-monitoring.jpg")
}

.home-differences__card--expertise {
    background-image: url("../../src/assets/images/home-differences-card-expertise.jpg")
}

.home-differences__card--support {
    background-image: url("../../src/assets/images/home-differences-card-support.jpg")
}

.home-differences__card--transparency {
    background-image: url("../../src/assets/images/home-differences-card-transparency.jpg")
}

.home-differences__card--educational {
    background-image: url("../../src/assets/images/home-differences-card-educational.jpg")
}

.home-differences__card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    position: relative
}

.home-differences__card-text {
    font-size: .75rem;
    line-height: 1.25rem;
    position: relative
}

.about {
    flex: 1;
    padding: 5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media(min-width: 1200px) {
    .about {
        text-align: left
    }
}

.about__title {
    font-weight: bold;
    font-size: 2.25rem
}

.about__text {
    font-size: 1.3rem;
    margin-top: 2rem;
    line-height: 2rem
}

.about__separator {
    position: relative;
    height: 1px;
    width: 70%;
    background-color: #828282;
    margin: 2rem auto
}

@media(min-width: 1200px) {
    .about__separator {
        width: 1px;
        height: 70%;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%)
    }
}

.about-box {
    width: 100%;
    max-width: 255px;
    margin-inline: auto
}

.about-box:not(:first-child) {
    margin-top: 2rem
}

@media(min-width: 1200px) {
    .about-box {
        margin-inline: initial
    }
}

.about-box__title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: .5rem
}

.about-box__text {
    font-size: .875rem;
    line-height: 1.625rem
}

.contact {
    flex: 1;
    padding: 5rem 0;
}

.contact__container {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center
}

@media(min-width: 1200px) {
    .contact__container {
        align-items: flex-start;
        text-align: initial
    }
}

.contact__title {
    font-size: 2.25rem;
    font-weight: bold
}

.contact__title--small {
    font-size: 1.25rem
}

.contact__text {
    font-size: 1rem;
    margin-top: 2rem
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.5rem 0 2rem 0
}

.contact-phone__icon {
    margin-left: .5rem
}

.contact-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    font-size: .875rem
}

@media(min-width: 1200px) {
    .contact-address {
        align-items: flex-start
    }
}

.contact-address__title {
    font-size: inherit;
    font-weight: bold
}

.contact-address__link {
    display: block;
    font-size: inherit;
    margin-top: .25rem
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin-inline: auto
}

@media(min-width: 1200px) {
    .contact-form__layout {
        display: flex
    }
    .contact-form__layout :not(:first-child) {
        margin-left: 1.25rem
    }
}

.contact-form__input {
    width: 100%;
    height: 3.5rem;
    font-size: 1rem;
    background: #fff;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem
}

.contact-form__input--text-area {
    height: 180px
}

.contact-form__submit {
    height: 45px;
    width: 100%;
    font-size: 1rem
}

@media(min-width: 1200px) {
    .contact-form__submit {
        max-width: 150px
    }
}

.financial-planning__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 3.25rem 0
}

@media(min-width: 1200px) {
    .financial-planning__heading {
        font-size: 2.25rem;
        margin: 6.25rem 0
    }
}

.financial-planning__img-man-wrapper {
    display: none;
    position: relative;
    height: 500px;
    margin-bottom: 4.25rem
}

@media(min-width: 1200px) {
    .financial-planning__img-man-wrapper {
        display: block
    }
}

.financial-planning__img-man {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: url("../../src/assets/images/financial-planning-man.jpg") no-repeat center center/cover;
    border-radius: 0 0 0 0
}

.financial-planning__heading-2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem
}

.financial-planning__text {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: justify;
    margin-bottom: 1.25rem
}

.financial-planning__cta {
    color: var(--color-gray-1);
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    font-weight: 400;
    margin: 5rem 0
}

.financial-planning__cta strong {
    font-size: 700
}

@media(min-width: 1200px) {
    .financial-planning__cta {
        text-align: start
    }
}

.financial-planning__img-building-wrapper {
    position: relative;
    height: 500px
}

@media(min-width: 1200px) {
    .financial-planning__img-building-wrapper {
        height: 1165px
    }
}

.financial-planning__img-building {
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 100%;
    background: url("../../src/assets/images/financial-planning-man.jpg") no-repeat center center/cover
}

@media(min-width: 1200px) {
    .financial-planning__img-building {
        width: 50vw;
        margin: initial;
        left: 0;
        right: initial;
        border-radius: 0 0 0 0;
        background: url("../../src/assets/images/financial-planning-building.jpg") no-repeat center center/cover
    }
}

.financial-education__hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.financial-education__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3.25rem
}

@media(min-width: 1200px) {
    .financial-education__heading {
        font-size: 2.25rem
    }
}

.financial-education__hero-text {
    font-size: 1rem;
    text-align: justify;
    line-height: 2.25rem
}

@media(min-width: 1200px) {
    .financial-education__hero-text {
        max-width: 340px
    }
}

.financial-education__img-woman-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px
}

.financial-education__img-woman {
    position: absolute;
    left: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 100%;
    background: url("../../src/assets/images/financial-education-woman.jpg") no-repeat center center/cover
}

@media(min-width: 1200px) {
    .financial-education__img-woman {
        width: 60vw;
        border-radius: 0 0 0 0;
        left: 0;
        right: initial;
        margin: initial
    }
}

.financial-education__img-building-wrapper {
    display: none;
    position: relative;
    height: 100%;
    min-height: 730px
}

@media(min-width: 1200px) {
    .financial-education__img-building-wrapper {
        display: block
    }
}

.financial-education__img-building {
    position: absolute;
    right: 0;
    width: 50vw;
    height: 100%;
    border-radius: 0 0 0 0;
    background: url("../../src/assets/images/financial-education-building.jpg") no-repeat center center/cover
}

.financial-education__content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.financial-education__text {
    font-size: .875rem;
    text-align: justify;
    line-height: 1.5rem;
    margin-bottom: 1.5rem
}

.financial-education__cta-wrapper {
    margin: 2rem 0;
    text-align: center
}

@media(min-width: 1200px) {
    .financial-education__cta-wrapper {
        text-align: start
    }
}

.financial-education__cta {
    color: var(--color-gray-1);
    font-size: 1.5rem;
    line-height: 1.875rem
}

.customers-area {
    flex: 1;
    background: url("../../src/assets/images/customers-area-bg.jpg") no-repeat center center/cover;
    padding: 5rem 0;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.customers-area__heading {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center
}

@media(min-width: 1200px) {
    .customers-area__heading {
        text-align: start
    }
}

.customers-area__form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 3.75rem
}

@media(min-width: 1200px) {
    .customers-area__form-wrapper {
        margin-top: 0
    }
}

.customers-area-form {
    background: var(--color-primary-500);
    padding: 2.5rem;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.customers-area-form__heading {
    font-size: 1rem;
    font-weight: 700;
    text-align: center
}

.customers-area-form__input {
    color: #fff;
    font-size: .875rem;
    background: none;
    border: 1px solid #fff;
    border-radius: 0;
    padding: .75rem .875rem
}

.customers-area-form__button {
    padding: .75rem .875rem;
    text-transform: uppercase
}

.u-border-secondary-500 {
    display: inline-block;
    border-bottom: 2px solid hsl(33.8, 100%, 47.1%);
    text-transform: uppercase;
}

.u-color-gray-1 {
    color: var(--color-gray-1)
}

.u-color-black {
    color: #000
}

.u-bg-secondary-500 {
    background-color: hsl(33.8, 100%, 47.1%)
}

.u-bg-light-gray-1 {
    background-color: var(--color-light-gray-1)
}

#whatsapp-btn {
    position: fixed;
    bottom: 70px;
    right: 70px;
    z-index: 99999;
}
#whatsapp-btn:hover .box-option {
    display: block;
}
#whatsapp-btn button {
    position: absolute;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}
#whatsapp-btn button img {
    width: 50px;
    position: relative;
    left: -4px;
    top: -1px;
}
#whatsapp-btn button:focus {
    outline: 0;
}
#whatsapp-btn .fa-whatsapp {
    font-size: 2em;
}
#whatsapp-btn .box-option {
    display: none;
    background-color: #eee5de;
    width: 220px;
    padding: 5px 15px;
    position: absolute;
    bottom: 5px;
    border-radius: 19px;
    border: 1px solid #d2ccc5;
    font-size: 13px;
}
