@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700&display=swap');

:root {
    --color-bg: #f7f7f7;
    --color-text-primary: #1c1c1c;
    --color-text-secondary: #2b2b2b;
    --color-subtitle: #555555;
    --color-link: #1aa6a6;
    --color-link-hover: #148484;
    --color-divider: #c0c0c0;
    --color-footer: #7a7a7a;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--color-text-secondary);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--color-text-primary);
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 500;
}

a:hover,
a:focus {
    color: var(--color-link-hover);
    text-decoration: none;
}


/* Hero */

.hero-wrapper {
    background-color: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 620px;
}

.hero-content .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--color-subtitle);
    margin-bottom: 8px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--color-subtitle);
    font-weight: 500;
}

.hero-description {
    color: var(--color-text-secondary);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.cta-primary,
.cta-secondary {
    min-height: 48px;
    padding: 16px 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-primary {
    background-color: var(--color-link);
    color: #ffffff;
    border: 1px solid var(--color-link);
}

.cta-primary:hover,
.cta-primary:focus {
    background-color: var(--color-link-hover);
    border-color: var(--color-link-hover);
    color: #ffffff;
}

.cta-secondary {
    background-color: transparent;
    color: var(--color-link);
    border: 1px solid var(--color-link);
}

.cta-secondary:hover,
.cta-secondary:focus {
    background-color: rgba(26, 166, 166, 0.2);
}

.inline-link {
    margin-top: 12px;
    font-weight: 500;
    display: inline-flex;
}

.hero-visual {
    display: flex;
    align-items: flex-start;
}

.hero-visual img {
  width: 88%;
  border-radius: 12px;
  border: 1px solid var(--color-divider);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  background-color: #ffffff;
}

.camila-panel {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 24px 100px;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 40px;
    align-items: start;
}

.camila-photo-frame {
    background-color: #ededed;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 32px 48px rgba(0, 0, 0, 0.08);
}

.camila-photo-frame img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.camila-text h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.camila-text p {
    color: var(--color-text-secondary);
    max-width: 620px;
}

.camila-text .annotation {
    color: var(--color-subtitle);
    margin-top: 12px;
}

.camila-section {
    background-color: var(--color-bg);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 40px 24px 24px;
    }

    .camila-panel {
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }
}

/* Slide */

.section-blue {
    background-color: #fff;
}

.section-blue.no-padding {
    background: url(/images/bg-slide-1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-bg-2 {
    background-color: var(--color-bg);
    padding: 80px 0;
}



.assinatura img {
    margin-bottom: 20px;
}

.small-col-inside {
    display: flex;
    align-items: center;
}

.small-col-inside h1 {
        color: var(--color-text-primary);
        font-size: 34px;
        margin-bottom: 20px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
}

.register-form-wrapper p {
        color: var(--color-text-secondary);
        margin-bottom: 5px;
        font-family: 'Inter', sans-serif;
}

.button-slide a {
    text-transform: none;
    color: #ffffff;
    display: inline-flex;
    padding: 16px 32px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.assinatura {
  filter: invert(100%);
}

.button-slide {
    text-align: left;
    background: var(--color-link);
    border-radius: 4px;
    margin-top: 15px;
}

span.destaque {
    color: var(--color-link);
}
/* <-------> */

/* sec-solucoes */
.beneficios img {
    max-width: 30vw;
    object-fit: cover;
    width: 100%;
    border-radius: 0px 20px 20px 0px;
}

.box-beneficios {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    margin: auto;
}

.beneficios {
        text-align: left;
        background-color: #1c1c1c;
        border-radius: 20px;
}

.box-beneficios li {
  font-size: 17px;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: left;
  padding-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.box-beneficios h1 {
    font-weight: 600;
    font-size: 32px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.box-beneficios ul {
    margin: 0;
}

i.fas.fa-check-circle:before {
    content: "\f058";
    color: var(--color-link);
}

span.destaque-title {
        color: var(--color-link);
}
/* <------> */

/* sec-empresa */
.section-grey {
    background: var(--color-bg);
}

.img-sobre {
    display: flex;
    justify-content: center;
}

.col-md-6.margin-top-60 {
    margin: auto;
}

#empresa {
    background: var(--color-bg);
}

h2.m-0.text-dark span {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
/* <----------> */

/* sec-depoimentos */
.title-dp {
        color: var(--color-text-primary) !important;
        font-family: 'Montserrat', sans-serif !important;
}
.img-depoimentos img {
    border-radius: 20px;
}

.text-dark {
        color: var(--color-text-primary) !important;
}

.inner__depoimento {
    border-radius: 30px;
}
/* <------> */

/* marcas */
img.logo-banco {
    border: none !important;
}

.img-depoimentos {
    height: 330px;
    margin: auto;
    display: flex;
    align-items: center;
}

.inner__depoimento {
  background: #eaf5ff0f;
}

.f-thumbs__viewport {
    display: none !important;
}

.section-bg-overlay {
    background: unset;
}

.col-md-10.text-center.padding-bottom-10 {
        padding: 40px 32px;
        background: #ffffff;
        margin: 0;
        border-radius: 16px;
        box-shadow: none;
        text-align: left;
}

#html-cta h3 {
        font-weight: 600;
        color: var(--color-text-primary);
}

#html-cta p {
        color: var(--color-text-secondary);
}

.botao-cta a {
    color: #ffffff;
    background-color: var(--color-link);
    border-radius: 6px;
    border: none;
    font-weight: 500;
    padding: 14px 28px;
}

h3.topico-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.topicos p {
    color: #f1f1f1;
}

.bonus {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1aa6a6;
    height: 230px;
    margin-bottom: 20px;
    padding: 0px 20px;
    border-radius: 15px;
    box-shadow: 0 19px 23px -19px #000000b5;
    z-index: 1;
}

span.ordem {
    position: absolute;
    font-size: 65px;
    font-weight: 800;
    bottom: -17px;
    right: -7px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.65);
    z-index: -1;
}

.topicos {
    height: 180px;
}

.title-bonus h1 {
        text-align: left;
        margin-bottom: 40px;
        color: var(--color-text-primary);
        font-size: 42px;
}

p.desc-garantia {
        color: var(--color-text-secondary);
        font-weight: 500;
}

h3.title-garantia {
        color: var(--color-text-primary);
        font-weight: 600;
}

.selo img {
    width: 230px;
}

.selo {
    text-align: left;
}

.box-garantia {
    margin-bottom: 50px;
}

.button-garantia {margin-top: 40px;}

.button-garantia a {
    background-color: var(--color-link);
    padding: 16px 32px;
    font-size: 18px;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid var(--color-link);
}

.desc-mentora p {
        color: var(--color-text-secondary);
}

.title-mentora h2 {
        color: var(--color-text-primary);
        margin-top: 20px;
}

.mentora img {
    visibility: hidden;
}

.pagamentos img {
    width: 280px;
}

.pagamentos {
    text-align: left;
    margin-top: 13px;
}

#empresa .row {
    background-color: #1aa6a6;
    border-radius: 20px;
    padding: 30px;
}

#sobre {
    padding: 150px 0px;
}

.img-mentora img {
    width: 500px;
}

.img-mentora {
    text-align: center;
}

.title-mentora p.sub-title {
        color: var(--color-subtitle);
        border: 1px solid var(--color-divider);
        border-radius: 12px;
        display: inline-flex;
        padding: 6px 12px;
        font-size: 0.9rem;
}

.footer {
    background-image: none;
    background-color: #f0f0f0;
    color: var(--color-footer);
}

.footer p,
.footer a {
    color: var(--color-footer);
}

.footer a:hover {
    color: var(--color-link-hover);
}

.logo {
  filter: invert(0%);
}

.footer .row {
    justify-content: center;
}

.titulo h2 {
    color: #000000 !important;
    margin-bottom: 40px !important;
    font-size: 50px;
}

/* faq */

#faq .row {
    justify-content: center;
}

.card-header {
    border-bottom: 1px solid #c7cacd;
}

#faq .btn-link:hover {
    color: #000000;
    text-decoration: none;
}

#faq .btn-link.focus, .btn-link:focus {
    text-decoration: none;
    color: #000;
}

.card-body {
    border-top: none;
}

.card-body p {
    color: #7b7b7b;
}

#faq .btn-link {
    color: #5d5d5d;
}

i.fas.fa-plus:before {
    position: relative;
    content: "\f067";
    color: #adadad;
    font-weight: 700;
    font-size: 17px;
    top: 0;
}

#empresa .col-md-6.margin-top-60 {
  padding: 20px;
}

i.fas.fa-plus {
    position: absolute;
    top: 17px;
    left: -26px;
    transform: rotate(45deg);
    transition: .3s ease-in-out;
}

button.btn.btn-link.btn-block.text-left.collapsed i.fas.fa-plus:not(.collapsed){
    transform: rotate(0deg);
}

#garantia {
    background-color: #efefef;
    padding: 60px 0px;
}

#sobre {
    padding-bottom: 40px;
}

@media(min-width:720px){
    #empresa .entered.litespeed-loaded {
    display: none;
    }

    #bancos .col-md {
    flex-basis: auto;
    flex-grow: 2;
    max-width: 20%;
    }
}

@media (max-width: 720px) {
    .img-sobre {
        display: none;
    }

    #empresa .row {
        padding: 30px 16px;
        background: none !important;
    }

    h2.m-0.text-dark {
        font-size: 29px;
        margin-bottom: 20px !important;
    }

    #bancos h2 {
        font-size: 42px;
    }

    .botao-cta a {
        font-size: 12pt;
    }

    h3.title-garantia,
    p.desc-garantia,
    .title-mentora,
    .desc-mentora p {
        text-align: left;
    }

    .img-mentora img {
        width: 100%;
    }

    .img-mentora {
        margin-bottom: 40px;
    }

    #sobre {
        padding: 60px 0px;
    }

    #vantagens {
        padding-bottom: 50px;
        padding-top: 40px;
    }

    .section-bg-2 {
        padding: 40px 0;
    }

    #bancos {
        padding-top: 40px;
    }

    #depoimentos {
        padding-top: 30px;
    }

    .conteudo {
        display: flex;
        flex-direction: column-reverse;
    }

    .beneficios img {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin-bottom: 10px;
    }

    .box-beneficios {
        height: 100%;
        width: 100%;
        padding: 0 20px;
    }

    .small-col-inside h1 {
        font-size: 28px;
        line-height: 30px;
    }

    .register-form-wrapper p {
        text-align: left;
    }

    .section-blue.no-padding .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .mentora img {
        visibility: visible;
        position: relative !important;
        opacity: 1 !important;
    }

    .section-blue.no-padding {
        background: unset;
    }

    .whatsapp-btn {
        right: 10px;
        bottom: 10px !important;
    }

    i.fas.fa-plus:before {
        color: #9f9f9f;
    }

    i.fas.fa-plus {
        left: unset;
        right: 10px;
    }

    #faq {
        padding-top: 20px;
    }

    .button-garantia {
        text-align: left;
    }

    .assinatura {
        display: none;
    }
}

/* Global page background */
html, body {
    background-color: var(--color-bg);
}

#empresa .text-dark {
  color: #fff !important;
}

#html-cta .col-md-10 {
    flex: 100%;
    max-width: 100%;
}

.selo {
  filter: invert(100%);
}

#html-cta {
  text-align: center;
}