@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* GERAL */


:root {
    --yellow-main: #F9DB7A;
    --yellow-dark: #D9B437;

    --yellow-prosperity: #ecb613;
    --brown-prosperity: #c8a050;

    --dark-bg1: #6B6B6B;
    --dark-bg2: #171717;

    --gradient-main:  linear-gradient(90deg, #FFD600 0%, #FF9900 100%);

}


html, body {
  overflow-x: hidden;
  width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
      font-family: "Lato", sans-serif !important;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      overflow-x: clip !important;
      color: #cfcfcf;
}
body::before {
    content: "";
    position: fixed;
    inset: 0; 
    background-image: url(../img/Group.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.150;
    z-index: 2;
}
h1,h2,h3,h4,h5,h6 {
    font-family:"Montserrat", sans-serif !important; 
}

p {
    margin-bottom: 0;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
}
}


.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}
.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.fade-in {
    transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


.main-button {
  display: inline-block;
  text-align: center;
}

.main-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 12px 36px;
  min-height: 54px;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;

  color: #1a1a1a;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #f5dc8b 0%,
    #e6bb52 30%,
    #cfa135 55%,
    #e9c96f 75%,
    #f7e6a8 100%
  );

  border-radius: 999px;
  border: 1px solid rgba(255, 215, 120, 0.55);

  /* Profundidade */
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25);

  /* ESSENCIAL: nada vaza */
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* Glow interno (contido no botão) */
.main-button a::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;

  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );

  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hover */
.main-button a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.main-button a:hover::after {
  opacity: 0.55;
}

/* Active */
.main-button a:active {
  transform: translateY(0);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.55),
    inset 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Mata azul e underline em QUALQUER estado */
.main-button a,
.main-button a:hover,
.main-button a:focus,
.main-button a:visited {
  color: #1a1a1a;
  text-decoration: none;
}
/* HEADER */

main nav {
    position: absolute !important;
    top:0;
    left: 0;
    width: 100%;
    z-index: 3;
    z-index: 100;
    background: transparent;
}
main nav .container {
    padding: 20px 0;
}
main nav .container .navbar-brand img {
    max-width: 200px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    text-decoration: none;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px !important;
    transition: all 0.2s ease;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
    filter: brightness(0.8);
    transform: translateY(-2px);
}
nav .buttons {
    gap: 20px;
}
nav .main-button a {
    padding: 10px 30px;
}
.navbar-expand-lg .navbar-collapse {
    gap: 20px;
}
@media (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
        padding: 0 10px !important;
    }
}
@media (max-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin: 0 auto;
  }
  .navbar-collapse {
    background-color: #0c0c0c;
    padding: 32px 24px;
    border-radius: 18px;
    margin-top: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  @media (max-width: 576px) {
    main nav .container {
      padding: 20px;
    }
    main nav .container .navbar-brand img {
      max-width: 160px;
    }
  }
  .navbar-nav {
    width: 100%;
    align-items: center;
    gap: 18px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0 !important;
  }

  .buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .main-button a {
    width: 100%;
    justify-content: center;
  }

  .wpp-button a {
    display: flex;
    justify-content: center;
  }
}



/* HERO AREA */

    #hero-area {
        padding: 250px 0 150px 0;
        position: relative;
        overflow-x: hidden;
        text-align: center;
    }
    #hero-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        /* SEU GRADIENT DO FIGMA (ESQUERDA → DIREITA) */
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
        z-index: 1;
    }
    #hero-area .container {
        position: relative;
        z-index: 3;
    }
    .hero-eyebrow {
        display: inline-block;
        margin-bottom: 15px;
        font-size: 0.70em;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--brown-prosperity);
        font-weight: 600;
        font-family: "Montserrat", sans-serif !important;
    }
    #hero-area h1 {
        text-align: center;
        color: #fff;
        font-size: 3.3em;
        font-weight: 400 !important;
    }
    #hero-area h1 .h1-start {
        font-weight: 700;
    }
    .hero-microcopy {
        margin-top: 20px;
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.75);
        letter-spacing: 0.5px;
    }
    #hero-area h1 .line-h1 {
        color: var(--yellow-main);
    }
    #hero-area p {
        color: #fff;
        font-size: 1.1em;
        font-weight: 300;
        text-align: center;
        padding: 20px 200px;
    }
    #hero-area .main-button a {
        padding: 15px 60px;
    }
    @media (max-width: 1200px) {
      #hero-area h1 {
            font-size: 2.8em;
        }
    }
    @media (max-width:992px) {
        #hero-area h1 {
            font-size: 2.5em;
        }
        #hero-area p {
            padding: 30px 0;
        }
    }
    @media (max-width:768px) {
        #hero-area h1 {
            font-size: 2em;
        }
        #hero-area p {
            font-size: 1em;
        }
        #hero-area::before {
        
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
        z-index: 1;
    }
    }
    @media (max-width:425px) {
        #hero-area h1 {
            font-size: 1.6em;
        }
        #hero-area .main-button a {
        padding: 12px 50px;
        }
    }

/* ARQUITETURA AREA */

.value-architecture {
  background: radial-gradient(
      circle at top,
      rgba(255, 200, 120, 0.06),
      transparent 60%
    ),
    #0c0c0c;
  padding: 90px 0;
  color: #eaeaea;
  font-family: "Inter", system-ui, sans-serif;
}
.value-architecture .container {
  position: relative;
  z-index: 3;
}

.va-header {
  text-align: center;
  margin-bottom: 80px;
}

.va-header h2 {
  background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block; 
  margin-bottom: 16px;
  text-align: center;
}

.va-header p {
  color: #bfbfbf;
  font-size: 18px;
}

.va-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.va-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(212, 175, 115, 0.2);
  border-radius: 16px;
  padding: 48px 36px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.va-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(212, 175, 115, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.va-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.va-card:hover::before {
  opacity: 1;
}

.va-card.highlight {
  border-color: rgba(212, 175, 115, 0.45);
}
.va-icon {
  text-align: center;
  margin-bottom: 15px;
}
.va-icon img {
  max-height: 70px;
}

.va-card h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
  text-align: center;
  background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block; 
}

.va-subtitle {
  display: block;
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 28px;
  text-align: center;
}

.va-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.va-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

.va-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af73;
  font-size: 18px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .va-grid {
    grid-template-columns: 1fr;
  }

  .va-header h2 {
    font-size: 34px;
  }
}





/* STRUCTURE */

#structure {
    padding: 70PX 0;
    background-color: #090909;
}
#structure .container {
    position: relative;
    z-index: 3;
    text-align: center;
}
#structure h2 {
    font-size: 2.2em;
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* importante */
}
#structure .p-structure {
    color: #ccc;
    margin-bottom: 50px;
}

#structure .structure-card {
    background-color: #111;
    padding: 30px 20px;
    color: #fff;
    border: 1px solid rgba(201, 162, 77, 0.15);
    border-radius: 7px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}
@media (min-width: 992px) {
  #structure .card-bottom-row {
    margin-top: 30px;
  }
}
.structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
.structure-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 75%;
    height: 2px;

     background: linear-gradient(
        90deg,
        rgba(164, 125, 58, 0) 0%,
        rgba(164, 125, 58, 0.25) 20%,
        rgba(164, 125, 58, 0.85) 50%,
        rgba(164, 125, 58, 0.25) 80%,
        rgba(164, 125, 58, 0) 100%
    );

    
}

#structure .structure-card h4 {
    margin-top: 20px;
    font-size: 1.3em;
    font-weight: 500;
}

#structure .structure-card p {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 40px;
}
.structure-card:hover::before {
    height: 3px;
}
#structure .structure-card .structure-icon {
    max-height: 70px;
}

.card-footer-ornament {
    margin: 30px auto 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #c9a24d,
        transparent
    );
    position: relative;
}

.card-footer-ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: rgb(201, 162, 77);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.structure-card-footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;

}
.card-footer-line {
    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(201,162,77,0.85),
        transparent
    );
}
#structure .main-button {
  margin-top: 60px;
}
@media (max-width: 992px) {
    #structure .structure-cards {
        gap: 20px;
    }
    #structure h2 {
        font-size: 1.7em;
    }
}
@media (max-width: 425px) {
    #structure .main-button a {
        padding: 10px 30px;
}
}



/* COUNTER UP SECTION */

#counterupsection {
    padding: 120px 0;
     background: radial-gradient(
        ellipse at center,
        #1a140a 0%,
        #0e0e0e 60%,
        #080808 100%
    );
    position: relative;
    overflow: hidden;
    z-index: 3;
}


.counterup-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 70px;
}

.counterup-header h2 {
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.counterup-header p {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* COUNTERS */
.counterup-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ITEM */
.counterup-item {
    text-align: center;
    padding: 0 20px;
}


/* NÚMEROS */
.counterup-value {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #c9a04a;
    margin-bottom: 10px;
}

/* LABEL */
.counterup-label {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.counter-button-area {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
/* BARRINHAS ENTRE OS COUNTERS (DESKTOP) */
@media (min-width: 993px) {
    .counterup-item {
        position: relative;
    }

    .counterup-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 60px;
        background: linear-gradient(
            to bottom,
            transparent,
            rgba(201, 160, 74, 0.6),
            transparent
        );
    }
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .bi-counter {
    font-size: 29px;
  }
}
@media (max-width: 992px) {
    .counterup-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
    }

    .counterup-divider {
        width: 60px;
        height: 1px;
        margin: 30px 0;
        background: linear-gradient(
            to right,
            transparent,
            rgba(201, 160, 74, 0.6),
            transparent
        );
    }

    .counterup-item {
        padding: 0;
    }
}
@media (max-width: 576px) {
    .counterup-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .counterup-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* INVESTIDOR MAP */


.investor-profile-map {
  background: radial-gradient(circle at center, #151515, #070707 70%);
  padding: 100px 0px;
  color: #e6e6e6;
}

.investor-profile-map .container {
  position: relative;
  z-index: 3;
}
.section-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 80px;
  font-size: 2.2em;
}

.investor-profile-map .section-title span{
    text-align: center;
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
}


.profile-map {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  align-items: center;
  gap: 60px;
}

.profile-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.profile-column.left {
  align-items: flex-end;
}

.profile-column.right {
  align-items: flex-start;
}

.profile-card {
  max-width: 280px;
  padding: 18px 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(212,175,106,0.25);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.45;
  backdrop-filter: blur(6px);
  position: relative;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: rgba(212,175,106,0.45);
}

.profile-column.left .profile-card::before {
  right: -22px;
}

.profile-column.right .profile-card::before {
  left: -22px;
}

/* CENTRO – SILHUETA */
.profile-center {
  display: flex;
  justify-content: center;
  position: relative;
}



/* RODAPÉ */
.profile-footer {
  margin-top: 80px;
  text-align: center;
}

.profile-warning {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 1.2em;
  color: #9a9a9a;
}

.cta-button {
  display: inline-block;
  padding: 16px 52px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4af6a, #b8964e);
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(212,175,106,0.4);
}

.executive-silhouette {
  width: 240px;
  height: 340px;
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, #2b2b2b 36%, transparent 37%),
    linear-gradient(to bottom, #2b2b2b, #0b0b0b);
  border-radius: 120px 120px 40px 40px;
  border: 1px solid rgba(212,175,106,0.35);
  box-shadow:
    0 0 0 14px rgba(212,175,106,0.05),
    0 0 90px rgba(212,175,106,0.25);
}
.investor-silhouette-wrapper {
  position: relative;
  width: 320px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow dourado atrás */
.gold-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212,175,106,0.35),
    rgba(212,175,106,0.18),
    transparent 65%
  );
  filter: blur(6px);
  z-index: 1;
}

/* Container da imagem */
.investor-silhouette-image {
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
}

/* Imagem em si */
.investor-silhouette-image img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    grayscale(100%)
    contrast(1.1)
    brightness(0.95);
}

/* Contorno sutil dourado (opcional, mas fica lindo) */
.investor-silhouette-image::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 6px;
  border: 1px solid rgba(212,175,106,0.25);
  pointer-events: none;
}
/* RESPONSIVO */
@media (max-width: 1024px) {
  .profile-map {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-column.left,
  .profile-column.right {
    align-items: center;
  }

  .profile-card {
    max-width: 100%;
  }

  .profile-card::before {
    display: none;
  }
}


/* TABLE AREA */

#comparison-section {
  padding: 140px 0;
  background: radial-gradient(circle at top, #151515, #0b0b0b);
  color: #fff;
}
#comparison-section .container {
    position: relative;
    z-index: 3;
}

.comparison-header {
  text-align: center;
  margin: 0 auto 90px;
}

.comparison-header h2 {
  font-size: 2em;
  font-weight: 800;
   background: linear-gradient(90deg, #816814 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.comparison-header p {
  margin-top: 14px;
  opacity: 0.75;
}

/* ===== TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

/* ================= CELULAS ================= */
.comparison-table th,
.comparison-table td {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}

/* ================= CABEÇALHO ================= */
.comparison-table thead th {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Critério no header */
.comparison-table thead th:first-child {
  opacity: 0.9;
  color: #cfcfcf;
  
}


/* ================= COLUNA CRITÉRIO ================= */
.comparison-table tbody td:first-child {
  color: #cfcfcf;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.03);
}

/* ================= PROSPERITY ================= */
.col-highlight {
  color: var(--yellow-prosperity);
  font-weight: 600;
  background: linear-gradient(90deg, #816814 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ================= ZEBRADO ================= */
.comparison-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.015);
}

/* ================= HOVER PREMIUM ================= */
.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.035);
  transition: background 0.25s ease;
}

/* ================= RESPONSIVO DESKTOP ONLY ================= */
.desktop-only {
  display: block;
}

/* ===== CARDS ===== */
.comparison-cards {
  display: grid;
  gap: 26px;
}

.comparison-card {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px;
}

.comparison-card.prosperity {
  border: 1px solid rgba(201,161,91,0.45);
}

.comparison-card h3 {
  margin-bottom: 8px;
}

.comparison-card p {
  opacity: 0.75;
  margin-bottom: 16px;
}

.comparison-card ul li {
  margin-bottom: 10px;
}

/* ===== FIT ===== */

.fit-section {
  margin-top: 90px;
}

.fit-section h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.fit-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );
  transition: transform 0.25s ease, background 0.25s ease;
}

.fit-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}

.fit-check {
  color: var(--yellow-prosperity);
  font-size: 1.1rem;
  margin-top: 2px;
}

.fit-item p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}


/* ===== MESSAGE ===== */
.comparison-message {
  margin-top: 90px;
  text-align: center;
  font-size: 1.6rem;
  color: var(--yellow-prosperity);
}
.comparison-message p {
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
#comparison-section .button-area {
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 900px) {
  .desktop-only { display: none; }
  .mobile-only { display: grid; }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .comparison-header h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
    .fit-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* GARANTIAS */

.guarantees-section {
  padding: 120px 0;
  
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 200, 80, 0.05),
      transparent 60%
    ),
    #0b0b0b;
}

.guarantees-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.guarantees-header {
  text-align: left;
  margin-bottom: 64px;
}

.guarantees-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #e2e2e2;
}

.guarantees-header p {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 720px;
  color: #e2e2e2;
}

.guarantees-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.guarantees-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  color: #fff;
}

.guarantees-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--yellow-prosperity),
    transparent
  );
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.guarantees-list li:hover::before {
  height: 70%;
}

.guarantee-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-prosperity);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 200, 80, 0.35);
  box-shadow: 0 0 12px rgba(255, 200, 80, 0.25);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 1.1em;
  line-height: 1.5;
  opacity: 0.9;
}

.guarantees-footer {
  margin-top: 56px;
  text-align: center;
}

.guarantees-footer p {
  font-size: 1.2em;
  opacity: 0.75;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}
.guarantees-section .main-button {
  margin-top: 30px;
}

@media (max-width: 425px) {
    .guarantee-text {
        font-size: 1em;
    }
}


/* KASSIANO AREA */

.founder-section {
  background: radial-gradient(circle at left, #111113, #080809);
  padding: 120px 24px;
}

.founder-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.founder-label {
  font-size: 1.2em;
  font-weight: 500;
  background: linear-gradient(90deg, #816814 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.founder-content h2 {
  font-size: 42px;
  font-weight: 500;
  color: #e8e8e8;
  margin-bottom: 28px;
}

.founder-content p {
  font-size: 17px;
  line-height: 1.85;
  color: #b8b8b8;
  margin-bottom: 20px;
}

.founder-content p strong {
  color: #e8e8e8;
  font-weight: 500;
}


.founder-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.founder-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #b8b8b8;
}

.founder-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;;
  font-size: 18px;
  line-height: 1;
}


.founder-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.35);
}

.founder-image-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212,175,55,.25), transparent 65%);
  filter: blur(60px);
  z-index: 1;
}


@media (max-width: 992px) {
  .founder-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .founder-list li {
    padding-left: 0;
  }

  .founder-list li::before {
    display: none;
  }

  .founder-image-wrapper img {
    max-width: 400px !important;
    max-height: 400px !important;
  }
}
@media (max-width: 500px) {
  .founder-image-bg {
     background: radial-gradient(circle, rgba(212,175,55,.10), transparent 85%);
  }
  .founder-grid {
    grid-template-columns: 1fr !important;
  }
  .founder-image-wrapper {
    border-radius: 20px;
  }
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.founder-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #b8b8b8;
  text-align: left;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #0b0b0c;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.founder-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.founder-image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  z-index: 2;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0) 100%
  );
}

/* FAQ */

.faq-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #151515, #0b0b0b);
}
.faq-section .container {
    position: relative;
    z-index: 3;
}
/* COLUNA ESQUERDA */
.faq-eyebrow {
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-description {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 420px;
}

/* ORNAMENTO VISUAL */
.faq-ornament {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.faq-ornament span {
  width: 40px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--yellow-prosperity),
    transparent
  );
  opacity: 0.6;
}

/* ACCORDION */
.faq-accordion .accordion-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 20px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--yellow-prosperity);
  background: rgba(255,255,255,0.02);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(1.5);
}

.faq-accordion .accordion-body {
  color: rgba(255,255,255,0.75);
  padding: 18px 22px 22px;
  font-size: 0.95rem;
}
/* Cor da seta quando FECHADO */
.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(77%) sepia(66%) saturate(480%) hue-rotate(2deg) brightness(104%) contrast(102%);
}

/* Cor da seta quando ABERTO */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(77%) sepia(66%) saturate(480%) hue-rotate(2deg) brightness(104%) contrast(102%);
}

@media (max-width: 425px) {
  .faq-title {
    font-size: 1.5rem;
  }
  .guarantees-header h2 {
    font-size: 1.5rem;
  }
}

/* CTA BANNER */

.cta-access-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(255,215,0,0.08), transparent 45%),
    #0b0b0b;
}
.cta-access-section .container {
    position: relative;
    z-index: 3;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.cta-eyebrow {
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
}

.cta-content h2 {
  margin: 16px 0 20px;
  font-size: 2.2rem;
  font-weight: bold;
}

.cta-description {
  opacity: 0.85;
  max-width: 520px;
}

.access-steps {
  margin-top: 40px;
  display: grid;
  gap: 28px;
  padding: 0;
}

.access-steps li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    var(--yellow-prosperity),
    #caa24d
  );
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-steps strong {
  font-weight: 500;
}

.access-steps p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.cta-note {
  margin-top: 32px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(6px);
}

.cta-box h3 {
  margin-bottom: 24px;
  font-weight: 700;
}

.cta-checklist {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.cta-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.cta-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow-prosperity);
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    var(--yellow-prosperity),
    #caa24d
  );
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

.cta-subtext {
  display: block;
  margin-top: 14px;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ===== FRASE FINAL ===== */
.cta-footer-message {
  margin-top: 100px;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.cta-footer-message p {
  opacity: 0.8;
  margin-bottom: 10px;
}

.cta-footer-message strong {
  color: var(--yellow-prosperity);
  font-weight: 700;
  background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 576px) {
    .cta-access-section .step-number {
        width: 25px;
        height: 25px;
    }
    .cta-content h2 {
        font-size: 1.5em;
    }
}
@media (max-width: 425px) {
    .cta-access-section .step-number {
        background: none;
        color: #fff;
        font-size: 1.2em;
    }
    .cta-access-section .cta-box .main-button a{
        padding: 10px 20px;
        font-size: 0.8em;
        text-align: center;
    }
}
@media (max-width: 380px) {
    .cta-access-section .cta-box {
        text-align: center;
    }
    .cta-eyebrow,
    .cta-content h2,
     .cta-description,
     .cta-note {
        text-align: center;
        display: block;
     } 
} 

/* METODO AREA */

.flow-section h2 {
    text-align: center;
    font-size: 2.4em;
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 80px;
}


.flow-section {
    background-color: #090909;
    text-align: center;
}


.flow-section .container {
    position: relative;
    z-index: 3;
}

.flow-section .flow-card {
    background-color: #222222;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
}
.flow-section .flow-card .card-top {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--dark-bg1);
}
.flow-section .flow-card .card-top span {
    color: var(--yellow-main);
    font-family: "Montserrat", sans-serif;
}
.flow-section .flow-card .card-top h4 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 0;
}
.flow-section .flow-card .card-bottom {
    margin-top: 20px;
}
.flow-section .flow-card .card-bottom p {
    color: #fff;
}

.flow-section {
  width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
}

.flow-card {
  width: 100%;
  max-width: 520px;
  background: #131313;
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  position: relative;
}

.flow-card.left {
  margin-left: 0;
}

.flow-card.right {
  margin-left: auto;
}

.flow-line-svg {
  position: relative;
  margin: -40px 0 40px 0;
}
.flow-path {
  stroke: #d3b26d;   /* a linha dourada do seu layout */
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}


/* estado inicial (invisível) */
.flow-card[data-animate="left"] {
  transform: translateX(-80px);
}
.flow-card[data-animate="right"] {
  transform: translateX(80px);
}

/* quando aparecer */
.flow-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.flow-section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.flow-section-footer span {
  opacity: 0.8;
  max-width: 900px;
  margin-bottom: 10px;
}
@media(min-width: 1200px) {
  .flow-card {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .flow-card {
    margin-left: auto !important;
    margin-right: auto !important;
    margin: 40px;
  }

  /* remove deslocamentos laterais da animação */
  .flow-card[data-animate="left"],
  .flow-card[data-animate="right"] {
    transform: translateX(0) translateY(20px);
  }
  .flow-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
    .flow-section h2 {
        font-size: 1.6em;
    }
    .flow-section .flow-card .card-top h4 {
        font-size: 1.3em;
        
    }
    .flow-section .flow-card .card-top img {
        width: 65px;
        height: 65px;
    }
    .flow-section .flow-card {
        padding: 20px;
    }
}
@media (max-width: 425px) {
    .flow-section .flow-card .card-top {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 20px 0;
        text-align: center;
    }
    .flow-section .flow-card .card-bottom {
        text-align: center;
    }
    .flow-section .flow-card .card-top span {
        font-size: 0.9em;
    }

}

/* PRIVATE LABEL */

.private-label-section {
  padding: 70px 0;
  background: radial-gradient(circle at top, #121214, #080809);
}
.private-label-section .container {
  position: relative;
  z-index: 3;
}

.private-label-card {
  margin: 0 auto;
  max-width: 880px;
  position: relative;
  padding: 64px 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0f0f11, #0a0a0b);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.05),
    0 20px 50px rgba(0,0,0,0.65);
  transition: transform .35s ease, box-shadow .35s ease;
}

.private-label-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent 30%, rgba(212,175,55,.35), transparent 70%);
  opacity: .15;
  pointer-events: none;
}

.private-label-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.12),
    0 60px 160px rgba(0,0,0,0.8);
}

.icon-wrapper {
  width: 68px;
  height: 68px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  fill: #d4af37;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.35));
}

.private-label-card h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-align: center;
  color: #d4af37;
  margin-bottom: 28px;
}

.private-label-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #b5b5b5;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 18px;
}

.private-label-card p strong {
  color: #e6e6e6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .private-label-card {
    padding: 48px 28px;
  }

  .private-label-card h2 {
    font-size: 26px;
  }

  .private-label-card p {
    font-size: 16px;
  }
}

/* FORM AREA */

.lead-section-centered {
  
  padding: 90px 20px;
  display: flex;
  justify-content: center;
  background-color: #0c0c0c;
  background: #0c0c0c;
}

.lead-container {
  max-width: 760px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}

.lead-container h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: bold;
}

.lead-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 48px;
}

.lead-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  text-align: left;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}

/* INPUTS */
.form-group input {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.12);
}

/* CUSTOM SELECT */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px;
  border-radius: 12px;

  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,175,55,0.25);
  color: #fff;
  cursor: pointer;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;

  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;

  overflow: hidden;
  display: none;
  z-index: 10;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-option {
  padding: 14px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .15s ease;
}

.custom-option:hover {
  background: rgba(212,175,55,0.12);
}

/* RADIO CARDS */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-card input {
  display: none;
}

.radio-card span {
  display: block;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
}

.radio-card input:checked + span {
  border-color: #d4af37;
  background: rgba(212,175,55,0.12);
}

/* BUTTONS */
.btn-primary {
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  background: linear-gradient(135deg, #f5c542, #d9a300);
  border-radius: 12px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}

.divider {
  margin: 32px 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
}


/* BOTÃO DOURADO – FORMULÁRIO */
.btn-gold-form {
  position: relative;

  width: 100%;
  min-height: 56px;
  padding: 16px 28px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;

  color: #1a1a1a;
  background: linear-gradient(
    135deg,
    #f5dc8b 0%,
    #e6bb52 30%,
    #cfa135 55%,
    #e9c96f 75%,
    #f7e6a8 100%
  );

  border-radius: 12px;
  border: 1px solid rgba(255, 215, 120, 0.55);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25);

  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* Glow interno controlado */
.btn-gold-form::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;

  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );

  opacity: 0.35;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

/* Hover */
.btn-gold-form:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.btn-gold-form:hover::after {
  opacity: 0.55;
}

/* Active */
.btn-gold-form:active {
  transform: translateY(0);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.55),
    inset 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Mata qualquer estado estranho */
.btn-gold-form,
.btn-gold-form:hover,
.btn-gold-form:focus,
.btn-gold-form:visited {
  color: #1a1a1a;
  outline: none;
}


/* WHATSAPP TRANSLÚCIDO */
.btn-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 16px;
  border-radius: 12px;

  background: rgba(18,140,126,0.18);
  border: 1px solid rgba(18,140,126,0.45);
  color: #e6f4ef;
  text-decoration: none;

  backdrop-filter: blur(6px);
}

.btn-whatsapp:hover {
  background: rgba(18,140,126,0.28);
}

.lead-note {
  margin-top: 32px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width:768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .radio-group {
        grid-template-columns: 1fr;
    }
    .lead-container h2 {
      font-size: 2em;
    }
}
.form-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  position: relative;
}

.form-separator::before,
.form-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.form-separator span {
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* footer */

footer {
    background-color: #030303;
padding: 70px 0 0 0;
}
footer .container {
    position: relative;
    z-index: 3;
}
footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #6b6b6b;
    padding-bottom: 30px;
}
footer .nav-links h4 {
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
footer .nav-links nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
footer .nav-links nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600 !important;
    position: relative;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
footer .nav-links nav a:hover {
    filter: brightness(0.8);
    transform: translateY(-2px);
}
footer .text-area span {
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    background: linear-gradient(90deg, #715f23 0%, var(--yellow-main) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-align: center;
}

footer .logo-area img {
    max-width: 210px;
    height: auto;
}


footer address {
    display: grid;
     grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #6B6B6B;
    row-gap: 20px;
    padding: 20px 0;
}
footer address .address-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer address a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
}
footer address a:hover {
  text-decoration: underline;
}
footer .copyright-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 50px 0;
}
footer .copyright-area span {
    color: #aaa;
}
footer .copyright-area .span-mobile {
    display: none;
}
footer .copyright-area a {
    text-decoration: underline;
    color: #aaa;
}
footer .copyright-area-bottom {
    text-align: center;
    border-top: 1px solid #6B6B6B;
    padding: 20px 0;
}
footer .copyright-area-bottom span {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}
@media (max-width: 1200px) {
  footer address {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:992px) {
    
    footer .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    footer .footer-top .text-area {
        text-align: center;
    }
    footer .copyright-area span {
    display: none;
}
footer .copyright-area .span-mobile {
    display: block;
    text-align: center;
}
}
@media (max-width:768px) {
    
footer address {
    grid-template-columns: repeat(1, 1fr);
}
footer .text-area span {
    font-size: 1.7em;
    margin-bottom: 20px;
}
footer address a {
    font-size: 1em;
}
footer .logo-area img {
  max-width: 170px;
}
}

