:root {
  --bg-white: #ffffff;
  --bg-warm: #f8f5f1;
  --text-dark: #2d1f1a;
  --text-soft: #6a625e;
  --green: #1f9d55;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-warm);
  color: #2b1f1b;
  overflow-x: hidden;
}

.container {
  width: min(1160px, 90%);
  margin: auto;
}

/* HERO */

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  margin-top: -110px;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248, 245, 241, .98) 10%,
    rgba(248, 245, 241, .94) 24%,
    rgba(248, 245, 241, .76) 42%,
    rgba(248, 245, 241, .25) 62%,
    rgba(248, 245, 241, 0) 100%
  );
}

.header {
  position: relative;
  width: 100%;
  padding: 24px 0;
  z-index: 20;
  background: transparent;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.brand-text span {
  font-size: 14px;
  color: #756b66;
}

.menu {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: #4b413d;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.menu a:hover {
  opacity: .7;
}

.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

.hero-left {
  max-width: 760px;
  margin-top: 20px;
}

.mini-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 24px;
  color: #6c5f5a;
}

.hero-left h1 {
  font-size: 35px;
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.hero-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #5e5956;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #fff;
  padding: 22px 24px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 14px 30px rgba(31, 157, 85, .28);
}

.hero-whatsapp:hover {
  transform: scale(1.05);
}

.hero-security {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #746c67;
}

.hero-features {
  display: flex;
  gap: 46px;
  margin-top: 36px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.feature i {
  font-size: 24px;
  color: #736964;
  flex-shrink: 0;
}

.feature span {
  font-size: 15px;
  line-height: 1.5;
  color: #5e5956;
}

/* BARRA DE AUTORIDADE */

.authority-bar {
  position: relative;
  z-index: 30;
  margin-top: -82px;
  padding-bottom: 72px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 82px,
    var(--bg-white) 82px,
    var(--bg-white) 100%
  );
}

.authority-container {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 26px 36px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1.3fr;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  border: 1px solid rgba(255, 255, 255, .65);
}

.authority-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.number-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.plus-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #7b6d66;
}

.authority-number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text-dark);
}

.authority-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
  margin-top: 10px;
}

.authority-divider {
  width: 1px;
  height: 74px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .12), transparent);
  justify-self: center;
}

.authority-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.verified-text i {
  font-size: 28px;
  color: #2f8b71;
  flex-shrink: 0;
}

.typing-text {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  max-width: 420px;
}

/* COMO POSSO TE AJUDAR */

.support-section {
  padding: 50px 0;
  background: var(--bg-white);
}

.support-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px auto;
}

.support-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b6d66;
  margin-bottom: 20px;
}

.support-header h2 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.support-card {
  display: flex;
  flex-direction: column;
  transition: .35s;
}

.support-card:hover {
  transform: translateY(-6px);
}

.support-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s;
}

.support-card:hover img {
  transform: scale(1.04);
}

.support-content {
  text-align: center;
  padding: 0 10px;
}

.support-content h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.support-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

.support-button-area {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.support-button:hover {
  transform: translateY(-3px);
  background: #f7f3ef;
}

/* SOBRE */

.about-section {
  padding: 50px 0;
  background: #ffffff;
}

.about-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px auto;
}

.about-header .about-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: #7b6d66;

  margin-bottom: 20px;
}

.about-header h2 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -2px;

  color: var(--text-dark);

  margin-bottom: 14px;
}

.about-header .about-crp {
  font-size: 20px;
  line-height: 1.5;

  color: #5f5652;
  font-weight: 500;

  margin-bottom: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 80px;
}

.about-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-content {
  max-width: 620px;
}

.about-mini {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b6d66;
  margin-bottom: 5px;
}

.about-content h2 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.about-crp {
  font-size: 22px;
  font-weight: 500;
  color: #5f5652;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #645c58;
  margin-bottom: 20px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efe8e1;
  color: #6e625c;
  font-size: 18px;
  flex-shrink: 0;
}

.about-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 36px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s;
  box-shadow: 0 14px 30px rgba(31, 157, 85, .25);
}

.about-button:hover {
  transform: translateY(-3px);
}

/* AVALIACOES */

.reviews-section {
  padding: 50px 0;
  background: var(--bg-white);
}

.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.reviews-mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b6d66;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.reviews-header p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
}

.reviews-widget {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-widget > div {
  width: 100%;
}

/* COMO FUNCIONA */

.process-section {
  padding: 50px 0;
  background: var(--bg-white);
}

.process-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px auto;
}

.process-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6f625d;
  margin-bottom: 22px;
}

.process-mini i {
  color: #7f9164;
  font-size: 18px;
}

.process-header h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
  align-items: start;
  gap: 20px;
}

.process-card {
  text-align: center;
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity .7s ease, transform .7s ease;
}

.process-section.active .process-card {
  opacity: 1;
  transform: translateX(0);
}

.process-section.active .process-card:nth-child(1) {
  transition-delay: .1s;
}

.process-section.active .process-card:nth-child(3) {
  transition-delay: .35s;
}

.process-section.active .process-card:nth-child(5) {
  transition-delay: .6s;
}

.process-section.active .process-card:nth-child(7) {
  transition-delay: .85s;
}

.process-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(45, 31, 26, .12);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .04);
}

.process-icon i {
  font-size: 38px;
  color: #6e625c;
}

.process-card h3 {
  font-size: 20px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -.4px;
}

.process-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 260px;
  margin: auto;
}

.process-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 108px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

.process-arrow i {
  font-size: 24px;
  color: #8a7d76;
}

.process-section.active .process-arrow {
  opacity: 1;
  transform: translateX(0);
}

.process-section.active .process-arrow:nth-child(2) {
  transition-delay: .25s;
}

.process-section.active .process-arrow:nth-child(4) {
  transition-delay: .5s;
}

.process-section.active .process-arrow:nth-child(6) {
  transition-delay: .75s;
}

.process-button-area {
  width: 100%;
  max-width: 520px;
  margin: 62px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.process-section.active .process-button-area {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.process-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: #fff;
  padding: 18px 34px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 14px 30px rgba(31, 157, 85, .25);
}

.process-whatsapp:hover {
  transform: translateY(-3px);
}

.process-whatsapp i {
  font-size: 24px;
}

.process-button-area p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-soft);
}

/* INVESTIMENTO */

.investment-section {
  padding: 50px 0;
  background: var(--bg-warm);
}

.investment-container {
  max-width: 1180px;
}

.investment-header {
  text-align: center;
  margin: 0 auto 30px auto;
}

.investment-mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a7a70;
  margin-bottom: 14px;
}

.investment-header h2 {
  font-size: 54px;
  line-height: .98;
  letter-spacing: -2px;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto 24px auto;
}

.investment-header p {
  font-size: 18px;
  line-height: 1.45;
  color: #2d1f1a;
}

.investment-info {
  width: 100%;
  margin: 0 auto 34px auto;
  padding: 14px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  background: rgba(239, 232, 225, .66);
  border: 1px solid rgba(45, 31, 26, .06);
  border-radius: 14px;
}

.investment-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f4ece5;
  color: #3b2a23;

  font-size: 20px;
  flex-shrink: 0;
}

.investment-info p {
  font-size: 18px;
  line-height: 1.45;
  color: #2d1f1a;
  font-weight: 500;
  text-align: center;
  
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.investment-card {
  min-height: 430px;
  padding: 32px 28px 24px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(45, 31, 26, .10);
  border-radius: 18px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, .04);
}

.investment-card-featured {
  position: relative;

  border-color: rgba(31, 126, 57, .75);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, .92) 0%,
    rgba(247, 250, 244, .92) 100%
  );
}

.investment-card-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;

  position: relative;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f2e9e1;
  color: #1f1713;

  font-size: 34px;
}

.investment-card-icon-featured {
  background: #e6efe3;
}

.investment-card-icon-featured span {
  position: absolute;
  right: 16px;
  bottom: 20px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: #168a3a;
}

.investment-card h3 {
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 800;
}

.investment-card-subtitle {
  font-size: 16px;
  color: #2d1f1a;
  text-align: center;
  margin-bottom: 24px;
}

.investment-divider {
  width: 100%;
  height: 1px;
  background: rgba(45, 31, 26, .10);
  margin-bottom: 24px;
}

.investment-price {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -1px;
  color: #1f1713;
  font-weight: 700;
  text-align: center;
}

.investment-price-featured {
  color: #147a36;
}

.investment-price-note {
  display: block;
  margin-top: 14px;

  font-size: 16px;
  color: #2d1f1a;
  text-align: center;
}

.investment-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 22px;

  border-radius: 10px;

  background: #1f9d55;
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;
  white-space: nowrap;

  box-shadow: 0 8px 18px rgba(31, 157, 85, .22);
}

.investment-card-note {
  width: 100%;
  margin-top: auto;
  padding: 18px 18px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  background: #f7f1ec;
  border-radius: 12px;
}

.investment-price-note {
  margin-bottom: 34px;
}

.investment-card-note-featured {
  background: #e8f1e4;
}

.investment-card-note i {
  width: 28px;
  height: 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee2d6;
  color: #4c3528;

  font-size: 13px;
  flex-shrink: 0;
}

.investment-card-note-featured i {
  background: #cde6c9;
  color: #147a36;
}

.investment-card-note p {
  font-size: 16px;
  line-height: 1.45;
  color: #2d1f1a;
}

.investment-benefits {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.investment-benefit {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 0 26px;

  border-right: 1px solid rgba(45, 31, 26, .12);
}

.investment-benefit:first-child {
  padding-left: 0;
}

.investment-benefit:last-child {
  border-right: 0;
  padding-right: 0;
}

.investment-benefit-icon {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f0e8df;
  color: #6e5545;

  font-size: 24px;
  flex-shrink: 0;
}

.investment-benefit p {
  font-size: 16px;
  line-height: 1.35;
  color: #2d1f1a;
}

.investment-button-area {
  margin-top: 36px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.investment-whatsapp {
  min-width: 500px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: var(--green);
  color: #fff;

  padding: 18px 34px;
  border-radius: 10px;

  font-size: 22px;
  font-weight: 800;

  text-decoration: none;

  transition: .3s;

  box-shadow: 0 14px 30px rgba(31, 157, 85, .28);
}

.investment-whatsapp:hover {
  transform: translateY(-3px);
}

.investment-whatsapp i {
  font-size: 28px;
}

.investment-button-area p {
  margin-top: 14px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #7b6d66;

  font-size: 15px;
  font-weight: 500;
}

.investment-button-area p i {
  font-size: 14px;
}

/* RESPONSIVO INVESTIMENTO */

@media (max-width: 980px) {
  .investment-header h2 {
    font-size: 42px;
    line-height: 1.05;
  }

  .investment-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .investment-card {
    min-height: auto;
  }

  .investment-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 34px auto 0 auto;
  }

  .investment-benefit {
    padding: 0;
    border-right: 0;
  }

  .about-header {
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 38px;
  line-height: 1.12;
}

.about-header .about-crp {
  font-size: 18px;
}
}

@media (max-width: 620px) {
  .investment-section {
    padding: 80px 0;
  }

  .investment-header h2 {
    font-size: 36px;
  }

  .investment-header p {
    font-size: 17px;
  }

  .investment-info {
    align-items: flex-start;
    padding: 18px;
  }

  .investment-info p {
    font-size: 16px;
  }

  .investment-benefits {
    grid-template-columns: 1fr;
  }

  .investment-whatsapp {
    min-width: 0;
    width: 100%;
    font-size: 18px;
    padding: 18px 22px;
  }
}

/* DUVIDAS FREQUENTES */

.faq-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.faq-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.faq-mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b6d66;
  margin-bottom: 16px;
}

.faq-header h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(45, 31, 26, .12);
  overflow: hidden;
}

.faq-item:first-child {
  border-radius: 10px 10px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 10px 10px;
}

.faq-item + .faq-item {
  border-top: 0;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #4b413d;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  font-size: 15px;
  color: #7b6d66;
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  padding: 0 28px 22px 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--text-dark);
}

/* RODAPE */

.site-footer {
  padding: 70px 0 28px 0;
  background: var(--bg-warm);
  border-top: 1px solid rgba(45, 31, 26, .08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1.25fr 1.1fr;
  gap: 70px;
  align-items: flex-start;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand h3,
.footer-links h4,
.footer-info h4,
.footer-warning h4 {
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 800;
}

.footer-logo-area h3 {
  margin-bottom: 5px;
}

.footer-logo-area span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.footer-brand p,
.footer-warning p {
  font-size: 16px;
  line-height: 1.75;
  color: #5f5652;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(45, 31, 26, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b413d;
  text-decoration: none;
  font-size: 20px;
  transition: .3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #efe8e1;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-legal a {
  color: #5f5652;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: .3s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text-dark);
}

.footer-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #5f5652;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.footer-info i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e625c;
  font-size: 17px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(45, 31, 26, .08);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal span {
  color: #9a908b;
}

/* POLITICA DE PRIVACIDADE */

.privacy-page {
  background: var(--bg-white);
  min-height: 100vh;
}

.privacy-hero {
  padding: 70px 0 50px 0;
  background: var(--bg-warm);
  border-bottom: 1px solid rgba(45, 31, 26, .08);
}

.privacy-hero-container {
  max-width: 920px;
  text-align: center;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #5f5652;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: .3s;
}

.privacy-back:hover {
  color: var(--text-dark);
  transform: translateX(-3px);
}

.privacy-mini {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b6d66;
  margin-bottom: 18px;
}

.privacy-hero h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.privacy-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto;
}

.privacy-update {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(45, 31, 26, .10);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.privacy-content-section {
  padding: 70px 0 100px 0;
  background: var(--bg-white);
}

.privacy-container {
  max-width: 920px;
}

.privacy-card {
  background: #fff;
  border: 1px solid rgba(45, 31, 26, .10);
  border-radius: 18px;
  padding: 54px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .04);
}

.privacy-card h2 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-top: 34px;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f5652;
  margin-bottom: 16px;
}

.privacy-card strong {
  color: var(--text-dark);
}

.privacy-card ul {
  margin: 6px 0 24px 22px;
  color: #5f5652;
}

.privacy-card li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.privacy-button,
.privacy-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: .3s;
}

.privacy-button {
  background: var(--bg-warm);
  color: var(--text-dark);
  border: 1px solid rgba(45, 31, 26, .10);
}

.privacy-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 157, 85, .25);
}

.privacy-button:hover,
.privacy-whatsapp:hover {
  transform: translateY(-3px);
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
    gap: 14px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 980px) {

  .authority-bar {
  margin-top: -80px;
  padding-bottom: 70px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 80px,
    var(--bg-white) 80px,
    var(--bg-white) 100%
  );
}

  .hero {
  min-height: auto;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 70px;
  display: block;
}

  .menu {
    display: none;
  }

  .header-container {
    gap: 20px;
  }

  .hero-content {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 36px;
}

 .hero-left {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

  .hero-left h1 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -2px;
    text-align: center;
  }

  .hero-left p {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
  }

  .hero-whatsapp {
    justify-content: center;
  }

  .hero-security {
    justify-content: center;
    text-align: center;
  }

  .hero-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .feature {
    justify-content: center;
    text-align: center;
    max-width: 280px;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(248, 245, 241, .95),
      rgba(248, 245, 241, .80)
    );
  }

  .hero-bg {
  object-position: 80% top;
}

  .authority-container {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 24px;
  }

  .authority-divider {
    display: none;
  }

  .authority-number {
    font-size: 24px;
  }

  .typing-text {
    font-size: 20px;
    text-align: center;
  }

  .verified-text {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    padding: 90px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    max-width: 620px;
    margin: auto;
  }

  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-crp {
    font-size: 20px;
  }

  .about-list {
    align-items: center;
  }

  .about-item {
    justify-content: center;
    text-align: left;
  }

  .about-button {
    width: 100%;
  }

  .process-section {
    padding: 90px 0;
  }

  .process-header h2 {
    font-size: 38px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-card {
    transform: translateY(35px);
  }

  .process-section.active .process-card {
    transform: translateY(0);
  }

  .process-arrow {
    height: auto;
    transform: translateY(-15px);
  }

  .process-arrow i {
    transform: rotate(90deg);
  }

  .process-section.active .process-arrow {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-column + .faq-column .faq-item:first-child {
    border-radius: 0;
    border-top: 0;
  }

  .faq-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 860px) {
  .investment-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .investment-button-area {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 90px 0;
  }

  .support-header h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .support-content h3 {
    font-size: 26px;
  }

  .support-button {
    width: 100%;
    justify-content: center;
  }

  .reviews-section {
    padding: 90px 0;
  }

  .reviews-header h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .reviews-header p {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 60px 0 26px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .privacy-hero {
    padding: 54px 0 42px 0;
  }

  .privacy-hero h1 {
    font-size: 38px;
  }

  .privacy-card {
    padding: 32px 24px;
    border-radius: 14px;
  }

  .privacy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-button,
  .privacy-whatsapp {
    width: 100%;
  }
}

  .support-mini i,
.about-mini i,
.reviews-mini i,
.process-mini i,
.investment-mini i,
.faq-mini i {
  color: #7f9164;
  font-size: 18px;
}

.support-mini,
.about-mini,
.reviews-mini,
.process-mini,
.investment-mini,
.faq-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 560px) {
  .faq-question {
    padding: 0 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 22px 20px;
  }
}

