/* ========================================
   GRUPO SOLCORP — LP Departamento Pessoal
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --gold-hover: #B8963F;
  --charcoal: #1E1E1E;
  --dark: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #999999;
  --white: #FFFFFF;
  --off-white: #F5F3EF;
  --cream: #FAF8F5;
  --black: #000000;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --section-py: 100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Highlight — palavras em dourado */
.highlight {
  color: var(--gold);
}

/* Typography */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin-bottom: 8px;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
}

em {
  font-style: italic;
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.3);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(45, 45, 45, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Ao rolar, a faixa fica translúcida — a tela desfocada passa por baixo */
.header.scrolled {
  background: rgba(45, 45, 45, 0.75);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  height: 56px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.header__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.header__cta .btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ========================================
   SECTION 1 — HERO
   ======================================== */
.hero {
  padding: 72px 0 0;
  overflow: hidden;
}

.hero__banner {
  width: 100%;
  min-height: calc(100vh - 72px);
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Imagem de fundo — cobre toda a área direita */
.hero__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
}

.hero__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--charcoal) 0%,
    var(--charcoal) 30%,
    rgba(30, 30, 30, 0.92) 45%,
    rgba(30, 30, 30, 0.5) 65%,
    rgba(30, 30, 30, 0.15) 100%
  );
  z-index: 2;
}

.hero__banner-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(197, 165, 90, 0.3);
  background: rgba(197, 165, 90, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero__badge-icon {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.hero__banner-content {
  max-width: 520px;
}

.hero__banner-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero__banner-content h1 .highlight {
  color: var(--gold);
}

.hero__banner-content p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.7;
}

.hero__banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cards flutuantes — posicionados em relação ao banner inteiro */
.hero__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(45, 45, 45, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  width: max-content;
  max-width: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
}

.hero__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(197, 165, 90, 0.3);
}

.hero__card-icon-wrapper {
  position: relative;
}

.hero__card-icon-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 90, 0.15);
  border-radius: 50%;
  color: var(--gold);
}

.hero__card-icon {
  width: 20px;
  height: 20px;
}

.hero__card-checkmark {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(45, 45, 45, 0.9);
  color: var(--white);
}

.hero__card-checkmark svg {
  width: 10px;
  height: 10px;
  stroke: var(--white);
}

.hero__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__card-title {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__card-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Posicionamento dos cards no desktop — arco ")" à direita */

/* Arco ")" — espaçamento uniforme de ~18% entre todos os cards */

/* Folha processada */
.hero__card--1 {
  top: 8%;
  right: 18%;
}

/* Nenhuma pendência crítica */
.hero__card--2 {
  top: 62%;
  right: 5%;
}

/* eSocial enviado — ponta do arco */
.hero__card--3 {
  top: 44%;
  right: 3%;
}

/* Encargos pagos */
.hero__card--4 {
  top: 19%;
  right: 4%;
}

/* Férias aprovadas */
.hero__card--5 {
  top: 80%;
  right: 17%;
}

/* ========================================
   BENEFITS STRIP
   ======================================== */
.benefits-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.benefits-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.benefits-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  position: relative;
}

.benefits-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(197, 165, 90, 0) 0%, rgba(197, 165, 90, 0.6) 50%, rgba(197, 165, 90, 0) 100%);
}

.benefits-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.benefits-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefits-strip__text strong {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.2;
}

.benefits-strip__text span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.2;
}

/* ========================================
   SECTION — COMPARATIVO REAL
   ======================================== */
.comparison {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.comparison__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.comparison__header p {
  margin-top: 16px;
}

.comparison__table {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison__head,
.comparison__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  align-items: center;
}

.comparison__head {
  background: var(--charcoal);
  padding: 18px 28px;
}

.comparison__head span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.comparison__head span:last-child {
  color: var(--gold);
}

.comparison__row {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.comparison__row:hover {
  background: rgba(197, 165, 90, 0.04);
}

.comparison__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.comparison__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison__func {
  font-size: 0.85rem;
  color: #71717a;
  background: #f4f4f5;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e4e4e7;
  max-width: max-content;
}

.comparison__sol {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-hover);
  background: rgba(197, 165, 90, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(197, 165, 90, 0.25);
  max-width: max-content;
}

@media (min-width: 769px) {
  .comparison__func::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a1a1aa;
    flex-shrink: 0;
  }

  .comparison__sol::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gold);
    flex-shrink: 0;
  }
}

.comparison__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--off-white);
  flex-wrap: wrap;
}

.comparison__foot span:first-child {
  font-size: 0.9rem;
  color: var(--gray);
}

.comparison__foot span:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ========================================
   SECTION 2 — PAIN POINTS
   ======================================== */
.pain-points {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.pain-points__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}

.pain-points__header h2 .highlight {
  color: var(--gold);
}

.pain-points__header p {
  margin-top: 16px;
  color: var(--gray);
}

.pain-points__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

.pain-points__media {
  position: relative;
  border-radius: 16px;
  height: 100%;
}

.pain-points__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Floating cards on image */
.pain-points__float-card {
  position: absolute;
  background: rgba(45, 45, 45, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.pain-points__float-card--1 {
  top: 40px;
  left: -20px;
}

.pain-points__float-card--2 {
  bottom: 80px;
  right: -40px;
}

.pain-points__float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 165, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.pain-points__float-icon svg {
  width: 20px;
  height: 20px;
}

.pain-points__float-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-points__float-text strong {
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.3;
}

.pain-points__float-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.pain-points__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-point-item {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pain-point-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.pain-point-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pain-point-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-point-item__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-point-item__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.2;
}

.pain-point-item__text p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.pain-points__media:hover .pain-points__img {
  transform: scale(1.03);
}

/* ========================================
   SECTION 3 — SERVICES
   ======================================== */
.services {
  padding: 64px 0;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.services .container {
  width: 100%;
}

.services__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.services__header h2 {
  font-size: 2.2rem;
  margin-top: 12px;
}

.services__header p {
  margin-top: 12px;
  color: var(--gray);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-card--featured {
  border: 1px solid rgba(197, 165, 90, 0.35) !important;
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.04);
}

.service-card--featured .service-card__icon {
  background: rgba(197, 165, 90, 0.22) !important;
}

.service-card--featured .service-card__icon svg {
  stroke: var(--gold-hover) !important;
}

.service-card--featured:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 16px 40px rgba(197, 165, 90, 0.12) !important;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 165, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--charcoal);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
}

/* Guarantees Strip */
.services__guarantees {
  background: var(--charcoal);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guarantee-text strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.guarantee-text span {
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.3;
  opacity: 0.9;
}

/* ========================================
   SECTION 4 — COST (DARK)
   ======================================== */
.cost-section {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cost-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cost-section .section-label {
  color: var(--gold);
}

.cost-section h2 {
  color: var(--white);
}

.cost-section h2 .highlight {
  color: var(--gold);
}

.cost-section p {
  color: rgba(255, 255, 255, 0.65);
}

.cost__header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.cost__header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  white-space: nowrap;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .cost__header h2 {
    white-space: normal;
  }
}

.cost__header-desc {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.cost__header-desc p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cost__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: 10px;
  background: rgba(197, 165, 90, 0.06);
  margin: 0 auto;
  text-align: left;
}

.cost__badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cost__badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.cost__table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cost__table-head,
.cost__table-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.3fr;
}

.cost__table-head {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost__table-head span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cost__table-head span:last-child {
  color: var(--gold);
}

.cost__table-row {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: start;
  gap: 16px;
  transition: background 0.2s ease;
}

.cost__table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cost__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.cost__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cost__func {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.cost__sol {
  font-size: 0.84rem;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1.55;
}

.cost__table-final {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: center;
}

/* ========================================
   SECTION 5 — HOW IT WORKS
   ======================================== */
.how-it-works {
  padding: 80px 0;
  text-align: center;
  background: var(--cream);
}

.how-it-works__header {
  max-width: 620px;
  margin: 0 auto 72px;
}

.how-it-works__header h2 .highlight {
  color: var(--gold);
}

.how-it-works__header p {
  margin-top: 16px;
  color: var(--gray);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  text-align: center;
}

.how-it-works__line {
  position: absolute;
  top: 70px; /* Metade da altura do ícone (140px / 2) */
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(197, 165, 90, 0.4);
  z-index: 0;
}

.how-it-works__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.how-it-works__arrow svg {
  width: 14px;
  height: 14px;
}

.how-it-works__arrow--1 {
  left: 33%;
}

.how-it-works__arrow--2 {
  left: 66%;
}

.step-card {
  position: relative;
  z-index: 1;
  opacity: 0.35;
  transform: translateY(15px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.step-card--active {
  opacity: 1;
  transform: translateY(0);
}

.step-card__visual {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
}

.step-card__icon-wrapper {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04), inset 0 0 0 8px rgba(197, 165, 90, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.4s ease;
}

.step-card--active .step-card__icon-wrapper {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 8px rgba(197, 165, 90, 0.1);
}

.step-card__icon-wrapper svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
}

.step-card__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  line-height: 1.4;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================
   SECTION 6 — BENEFITS
   ======================================== */
.benefits {
  padding: 64px 0;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits__header {
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.benefits__header h2 .highlight {
  color: var(--gold);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(197, 165, 90, 0.2);
}

.benefit-card__number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(197, 165, 90, 0.04);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  pointer-events: none;
}

.benefit-card:hover .benefit-card__number {
  color: rgba(197, 165, 90, 0.08);
  transform: scale(1.05) translate(-10px, 10px);
}

.benefit-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  background: rgba(197, 165, 90, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--gold);
  transform: scale(1.05);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-card__icon svg {
  stroke: var(--white);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--charcoal);
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--gray);
}

/* ========================================
   SECTION 7 — REVIEWS CAROUSEL
   ======================================== */
.reviews {
  padding: 64px 0;
  text-align: center;
  background: var(--white);
  overflow-x: hidden;
}

.reviews .container {
  max-width: 100%;
  padding: 0 30px;
}

.reviews__header {
  margin-bottom: 40px;
  padding: 0;
}

.reviews__header h2 {
  color: var(--charcoal);
  margin-bottom: 12px;
}

.reviews__header p {
  color: var(--gray);
  font-size: 0.9rem;
}

.reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
}

.reviews__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.reviews__stars span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-left: 8px;
}

/* Carousel container */
.reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 40px;
}

.reviews__track-wrapper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  margin: 0 -20px;
  padding: 0 20px;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.reviews__slide {
  flex-shrink: 0;
  padding: 0 8px;
  display: flex;
  align-items: stretch;
}

.reviews__card {
  background: #f5f5f7;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
  width: 100%;
}

.reviews__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 165, 90, 0.3);
}

/* Google Review elements */
.google-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.google-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.google-review__info {
  flex: 1;
  min-width: 0;
}

.google-review__name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review__date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gray-light);
  display: block;
}

.google-review__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.google-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.google-review__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.google-review__body {
  font-family: var(--font-sans);
  color: var(--gray);
  flex: 1;
}

.google-review__body p {
  margin: 0;
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Arrows */
.reviews__arrow {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.reviews__arrow--prev {
  left: 10px;
}

.reviews__arrow--next {
  right: 10px;
}

.reviews__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.reviews__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--charcoal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews__arrow:hover svg {
  stroke: var(--white);
}

/* Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews__dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ========================================
   SECTION 8 — CTA FINAL
   ======================================== */
.cta-final {
  padding: var(--section-py) 0;
  background: var(--white);
}

.cta-final__grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.cta-final__content h2 {
  margin-bottom: 20px;
}

.cta-final h2 .highlight {
  color: var(--gold);
}

.cta-final__content p {
  margin: 16px 0 32px 0;
  color: var(--gray);
  max-width: 520px;
}

.cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-final__subtext {
  margin-top: 24px !important;
  font-size: 0.8125rem !important;
  color: var(--gray-light) !important;
  text-align: left;
}

.cta-final__human-card {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(197, 165, 90, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.03);
}

.cta-final__human-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #1e1e1e;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final__human-quote p {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 16px 0 !important;
}

.cta-final__signature {
  display: flex;
  flex-direction: column;
}

.signature-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.signature-sub {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 380px;
  line-height: 1.7;
}

.footer__logo img {
  height: 90px;
  width: auto;
}

.footer__contact h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.footer__contact-item:hover {
  color: var(--white);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.footer__bottom-links {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links a {
  transition: color 0.2s ease;
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   TRUST LOGOS
   ======================================= */
.trust {
  padding: 48px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.trust__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  width: 100%;
}

.trust__logo-item {
  color: #a5a5a5;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__logo-item:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-2px);
}

.trust__logo-svg {
  transition: inherit;
}

/* ========================================
   SECTION 7.5 — FAQ (ACORDEÃO)
   ======================================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.faq__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.faq__header h2 {
  font-size: clamp(1.5rem, 3.2vw, 1.875rem);
  line-height: 1.3;
  color: var(--charcoal);
  font-weight: 700;
  margin-top: 12px;
}

.faq__header h2 .highlight {
  color: var(--gold);
}

.faq__header p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.95rem;
}

.faq__human-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid rgba(197, 165, 90, 0.15);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  max-width: 720px;
  margin: 56px auto 0;
  text-align: left;
}

.faq__human-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.faq__human-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq__human-text h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px 0;
}

.faq__human-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray);
  margin: 0 0 10px 0;
}

.faq__human-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq__human-link:hover {
  color: var(--charcoal);
}

.faq__human-link svg {
  transition: transform 0.2s ease;
}

.faq__human-link:hover svg {
  transform: translateX(3px);
}

.faq__accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq__item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(197, 165, 90, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 20px;
  outline: none;
}

.faq__question span {
  transition: color 0.3s ease;
}

.faq__arrow {
  width: 20px;
  height: 20px;
  stroke: var(--gray);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
  flex-shrink: 0;
}

.faq__item--active {
  border-color: var(--gold);
}

.faq__item--active .faq__question span {
  color: var(--gold);
}

.faq__item--active .faq__arrow {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-content {
  padding: 0 28px 24px 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

.faq__answer-content p {
  margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  /* slides dimensionados via JS */

  .benefits-strip__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    padding: 24px 0;
  }

  .benefits-strip__item {
    justify-content: flex-start;
  }

  .benefits-strip__item::after {
    display: none;
  }

  .pain-points__grid,
  .cost__grid,
  .faq__grid-layout,
  .cta-final__grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pain-points__list {
    grid-template-columns: 1fr;
  }

  .hero__bg-img {
    width: 70%;
  }

  .hero__banner-content {
    max-width: 420px;
  }

  .hero__card {
    padding: 10px 14px;
    gap: 10px;
  }

  .hero__card--1 {
    top: 10%;
    right: 5%;
  }

  .hero__card--2 {
    top: 46%;
    right: 26%;
  }

  .hero__card--3 {
    top: 38%;
    right: 3%;
  }

  .hero__card--4 {
    top: 20%;
    right: 28%;
  }

  .hero__card--5 {
    bottom: 12%;
    right: 6%;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__guarantees {
    flex-wrap: wrap;
    gap: 24px 16px;
  }
  
  .guarantee-item {
    flex: 1 1 calc(50% - 16px);
  }

  .how-it-works__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .how-it-works__line,
  .how-it-works__arrow {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
  }

  /* slides dimensionados via JS */

  .reviews__arrow {
    width: 40px;
    height: 40px;
  }


  .hero {
    padding-top: 74px;
  }

  .hero__banner {
    height: auto;
    min-height: calc(100vh - 74px);
  }

  .hero__banner-content h1 {
    font-size: 2rem;
  }

  .hero__bg-img {
    width: 100%;
    object-position: 70% 15%;
    opacity: 0.4;
  }

  .hero__banner-overlay {
    background: linear-gradient(
      to right,
      var(--charcoal) 0%,
      rgba(30, 30, 30, 0.97) 40%,
      rgba(30, 30, 30, 0.85) 100%
    );
  }

  .hero__card {
    display: none;
  }

  .header__inner {
    height: 74px;
  }

  .header__logo img {
    height: 52px;
  }

  .hero__banner-buttons {
    flex-direction: column;
  }

  .hero__banner-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__guarantees {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .guarantee-item {
    flex: 1 1 100%;
    width: 100%;
  }

  .how-it-works__steps,
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .header__phone {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-final__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-final__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  /* Comparativo Real — empilha em mobile */
  .comparison__head {
    display: none;
  }

  .comparison__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px;
  }

  .comparison__func::before,
  .comparison__sol::before {
    content: attr(data-label);
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 2px;
  }

  .comparison__func,
  .comparison__sol {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    display: block !important;
    border-radius: 0 !important;
  }

  .comparison__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Custo Real — empilha em mobile */
  .cost__table-head {
    display: none;
  }

  .cost__table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cost__func::before,
  .cost__sol::before {
    content: attr(data-label);
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2px;
  }

  /* Responsive Trust & FAQ */
  .trust {
    padding: 36px 0;
  }

  .trust__logos {
    gap: 30px 40px;
  }

  .faq__accordion {
    grid-template-columns: 1fr;
  }

  .faq__question {
    padding: 20px 24px;
    font-size: 0.95rem;
  }

  .faq__answer-content {
    padding: 0 24px 20px 24px;
    font-size: 0.9rem;
  }

  .faq__human-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .cta-final__grid-layout {
    text-align: center;
  }

  .cta-final__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__subtext {
    text-align: center;
  }

  .cta-final__human-img {
    height: 220px;
  }

  .cta-final__human-card {
    padding: 24px;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__banner {
    height: auto;
    min-height: calc(100vh - 74px);
    padding: 60px 0;
  }

  .benefits-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px 16px;
  }

  .benefit-card {
    padding: 32px 24px;
  }

  .benefit-card__number {
    font-size: 80px;
  }
}
