:root {
    --blue: #0b326c;
    --blue2: #154d9d;
    --gold: #d9a441;
    --light: #f6f8fc;
    --text: #1d2433;
    --muted: #6c7485;
    --white: #fff;
    --shadow: 0 20px 60px rgba(7, 31, 72, .18);
    --radius: 22px
}
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6
}

.container {
    width: min(1160px, 92%);
    margin: auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .06)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 800
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff
}

.menu {
    display: flex;
    gap: 24px
}

.menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700
}

.menu a:hover {
    color: var(--blue2)
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 22px
}

.hero {
    padding: 70px 0;
    background: radial-gradient(circle at top right, rgba(217, 164, 65, .22), transparent 35%), linear-gradient(135deg, #08265a, #0d4191);
    color: #fff
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center
}

.eyebrow {
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .86rem
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
    margin: 10px 0 20px
}

.hero-text {
    font-size: 1.18rem;
    color: #e9eef8;
    max-width: 620px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: .2s
}

.primary {
    background: linear-gradient(135deg, var(--gold), #f0c76b);
    color: #1b2431
}

.ghost {
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff
}

.btn:hover {
    transform: translateY(-2px)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: .95rem;
    color: #dbe7ff
}

.hero-card,
.info-box,
.cards article,
.steps article,
.visual-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.hero-card {
    padding: 26px
}

.card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px
}

.icon {
    font-size: 36px
}

.card-header h2 {
    margin: 0;
    color: var(--blue)
}

.card-header p {
    margin: 0;
    color: var(--muted)
}

.loan-form {
    display: grid;
    gap: 12px
}

.loan-form label {
    font-weight: 700;
    font-size: .92rem
}

.loan-form input,
.loan-form select,
.loan-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d9deea;
    border-radius: 12px;
    padding: 12px 13px;
    font: inherit
}

.loan-form fieldset {
    border: 1px solid #d9deea;
    border-radius: 12px;
    margin: 0;
    padding: 10px 12px
}

.loan-form legend {
    font-weight: 700
}

.radio {
    display: inline-flex;
    align-items: center;
    margin-right: 18px
}

.radio input {
    width: auto;
    margin-right: 6px
}

.full {
    width: 100%
}

.form-note {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    text-align: center
}

.section {
    padding: 74px 0
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center
}

.visual-card {
    min-height: 330px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eaf1ff, #fff)
}

.money-illustration {
    display: grid;
    place-items: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    font-size: 4rem;
    font-weight: 900;
    border: 10px solid #f3c761
}

.center {
    text-align: center
}

.process {
    background: var(--light)
}

.steps,
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px
}

.steps article,
.cards article {
    padding: 28px
}

.steps span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: var(--blue);
    color: #fff;
    font-weight: 900
}

.steps h3 {
    color: var(--blue)
}

.avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--blue);
    font-weight: 900
}

.cards small {
    display: block;
    color: var(--muted)
}

.about {
    background: linear-gradient(180deg, #fff, #f7f9fe)
}

.info-box {
    padding: 32px;
    border-top: 7px solid var(--gold)
}

.narrow {
    max-width: 850px
}

.faq details {
    background: #fff;
    border: 1px solid #e1e6f0;
    border-radius: 16px;
    margin: 12px 0;
    padding: 18px
}

.faq summary {
    font-weight: 800;
    cursor: pointer;
    color: var(--blue)
}

.legal {
    background: #0b326c;
    color: #fff
}

.legal .container {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 32px
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    background: transparent;
    padding: 0;
}

.floating-whatsapp img {
    width: 85px;
    display: block;
    margin-top: 18px;
    transition: transform .25s ease;
}

.floating-whatsapp:hover img {
    transform: scale(1.08);
}

footer {
    background: #061936;
    color: #d7e1f4;
    padding: 24px 0
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

footer a {
    color: #fff
}

@media(max-width:900px) {

    .hero-grid,
    .two-col {
        grid-template-columns: 1fr
    }

    .menu-btn {
        display: block
    }

    .menu {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 72px;
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 18px;
        display: none;
        flex-direction: column
    }

    .menu.open {
        display: flex
    }

    .steps,
    .cards {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 42px 0
    }

    .footer-grid {
        flex-direction: column;
        text-align: center
    }
}
.quem-somos-edit{
    color: #d9a441;
}


.logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #16346b;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.steps article {
    width: 260px;
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.steps h3 {
    color: #16346b;
    font-size: 24px;
}

.steps p {
    color: #2d3a52;
}

.testimonial-slider {
    background: #f4f4f4;
    padding: 90px 20px;
    text-align: center;
}

.testimonial-slider h2 {
    color: #16346b;
    font-size: 34px;
    margin-bottom: 45px;
}

.slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.comment {
    font-size: 22px;
    line-height: 1.8;
    color: #222;
    max-width: 950px;
    margin: 0 auto 35px;
    font-weight: 400;
}

.person {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.person img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.person h3 {
    margin: 0;
    font-size: 22px;
    color: #444;
    font-weight: 600;
}

.person span {
    color: #888;
    font-size: 16px;
}

.dots {
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
}

.dot.active {
    background: #666;
}

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

.info-box {
    background: white;
    max-width: 430px;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-top: 6px solid #d9a441;
    margin-top: 45px;
}

.info-box h3 {
    color: #16346b;
    font-size: 28px;
}

.ssl-box {
    text-align: center;
    padding: 90px 20px;
}

.ssl-box img {
    width: 220px;
}

.ssl-box h2 {
    color: #1652ff;
    font-size: 34px;
    max-width: 700px;
    margin: auto;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-copy {
    max-width: 650px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    color: white;
    font-weight: 700;
    margin: 18px 0 25px;
    max-width: 700px;
}

.hero-text {
    font-size: 22px;
    color: #dce7ff;
    line-height: 1.7;
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    margin-top: -150px;
    max-width: 780px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.hero-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.hero-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
/* BOTÃO POLÍTICA */

.privacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 20px;
  padding: 12px 22px;

  background: #111827;
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  border-radius: 12px;

  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.privacy-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  margin: 20px auto;

  padding: 10px 18px;

  background: #111827;
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.privacy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.privacy-btn:active {
  transform: scale(0.98);
}

/* PÁGINA POLÍTICA */

.privacy-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 24px;
  line-height: 1.8;
  margin-top: -100px;
}

.privacy-container h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.privacy-container h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 24px;
}

.privacy-container p,
.privacy-container li {
  color: #444;
}

.privacy-container ul {
  padding-left: 20px;
}

.back-btn {
  display: inline-block;
  margin-bottom: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #111827;
}

.back-btn:hover {
  opacity: 0.8;
}

.privacy-page {
  padding: 120px 20px 80px;
  background: #f8fafc;
  min-height: 100vh;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.privacy-container h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.privacy-intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.privacy-container h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 24px;
}

.privacy-container p,
.privacy-container li {
  line-height: 1.8;
  color: #444;
}

.privacy-container ul {
  padding-left: 20px;
}

.privacy-email {
  font-size: 18px;
  margin-top: 10px;
}

.footer {
  text-align: center;
  padding: 30px;
}

@media (max-width: 900px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 34px;
    }
}