:root{
  --bg:#050505; /* Deixado um tom discretamente mais escuro como na imagem 1 */
  --bg-2:#111111;
  --surface:#161616;
  --surface-2:#1c1c1c;
  --border:#1f1f1f;
  --text:#f5f5f5;
  --muted:#7a7a7a; /* Texto descritivo mais discreto como na primeira foto */
  --yellow:#FFD60A;
  --yellow-2:#FFC300;
  --display:"Space Grotesk", system-ui, sans-serif;
  --sans:"Inter", system-ui, sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{max-width:1200px;margin:0 auto;padding:0 24px}
.container.narrow{max-width:720px}

/* NAV */
.nav{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(5,5,5,.8);
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:10px;font-family:var(--display);font-weight:700;font-size:24px;color:var(--yellow)}
.brand-name{letter-spacing:-.03em}
.nav-links{display:flex;gap:32px}
.nav-links a{color:#e2e2e2;font-size:14px;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--yellow)}
@media (max-width:760px){.nav-links{display:none}}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 24px;border-radius:999px;
  font-weight:600;font-size:15px;
  border:1px solid transparent;cursor:pointer;
  transition:transform .15s ease, background .2s ease;
}
.btn-sm{padding:10px 20px;font-size:14px}
.btn-lg{padding:18px 30px;font-size:17px}
.btn-primary{
  background:var(--yellow);color:#0a0a0a;
}
.btn-primary:hover{background:var(--yellow-2);transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--text);border-color:#222}
.btn-ghost:hover{border-color:#444;background:rgba(255,255,255,0.03)}
.btn-icon {width:16px;height:16px}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 0% 10%, rgba(255,214,10,.12), transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  z-index: -1;
}
/* hero-inner não centraliza a caixas, mas alinha os textos internos à esquerda */
.hero-inner {
  text-align: left;
  max-width: 820px;
  margin: 0; /* Tira o "0 auto" para o bloco respeitar o lado esquerdo do container */
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #8e8e93;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.sparkle {
  color: var(--yellow);
  font-size: 12px;
}

.display {
  font-family: var(--display);
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  font-weight: 700;
}
.accent { color: var(--yellow); }

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 680px;
  margin: 0 0 44px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 64px; /* Espaço para não grudar nos números abaixo */
}

/* STATS - Reconfigurado para alinhar perfeitamente à esquerda */
.stats {
  display: flex;
  gap: 64px; /* Espaçamento largo entre as colunas como na imagem 1 */
  padding-top: 0;
  border-top: none; /* Remove a linha divisória que existia antes */
}
.stats div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.stats strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 44px); /* Tamanho maior e imponente para os números */
  color: var(--yellow);
  font-weight: 700;
  line-height: 1.1;
}
.stats span {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stats {
    gap: 32px;
    flex-wrap: wrap;
  }
}

/* MARQUEE */
.marquee{
  overflow:hidden;border-block:1px solid var(--border);
  background:var(--yellow);color:#0a0a0a;
}
.marquee-track{
  display:flex;gap:36px;white-space:nowrap;
  padding:14px 0;
  animation:scroll 28s linear infinite;
  font-family:var(--display);font-weight:700;letter-spacing:.1em;font-size:14px;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* SECTIONS */
.section{padding:100px 0}
.section-alt{background:var(--bg-2)}
.section-head{text-align:center;max-width:680px;margin:0 auto 56px}
.section-head h2{
  font-family:var(--display);font-size:clamp(30px,4.4vw,48px);
  letter-spacing:-.02em;margin:14px 0 12px;font-weight:700;
}
.section-head p{color:var(--muted);margin:0}

/* GRID */
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:980px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.grid-3,.grid-4{grid-template-columns:1fr}}

/* CARD */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-4px);border-color:rgba(255,214,10,.4);box-shadow:0 24px 60px -30px rgba(255,214,10,.25)}

/* CASE CARD */
.case-img{aspect-ratio:16/10;overflow:hidden;background:#000}
.case-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.case-card:hover .case-img img{transform:scale(1.05)}
.card-body{padding:22px}
.tag{
  display:inline-block;font-size:11px;letter-spacing:.12em;
  color:var(--yellow);background:rgba(255,214,10,.1);
  padding:5px 10px;border-radius:999px;font-weight:600;margin-bottom:12px;
}
.tag-dark{background:#0a0a0a;color:var(--yellow);border:1px solid var(--border)}
.card-body h3{font-family:var(--display);margin:0 0 8px;font-size:22px;letter-spacing:-.01em}
.card-body p{margin:0 0 18px;color:var(--muted);font-size:14px}
.card-foot{display:flex;justify-content:space-between;align-items:center}
.price{font-family:var(--display);font-size:22px;font-weight:700;color:var(--yellow)}

/* FEATURES */
.feature{
  background:var(--surface);border:1px solid var(--border);
  border-radius:20px;padding:28px;
  transition:border-color .25s ease, transform .25s ease;
}
.feature:hover{border-color:rgba(255,214,10,.4);transform:translateY(-3px)}
.feature-icon{
  width:48px;height:48px;border-radius:12px;
  background:rgba(255,214,10,.1);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-size:22px;font-weight:700;margin-bottom:18px;
}
.feature h3{font-family:var(--display);margin:0 0 8px;font-size:18px}
.feature p{margin:0;color:var(--muted);font-size:14px}

/* REVIEWS */
.review{padding:28px}
.stars{color:var(--yellow);letter-spacing:3px;margin-bottom:14px}
.review blockquote{margin:0 0 18px;font-size:16px;line-height:1.6}
.review figcaption{display:flex;flex-direction:column;border-top:1px solid var(--border);padding-top:14px}
.review figcaption strong{font-family:var(--display)}
.review figcaption span{color:var(--muted);font-size:13px}

/* PRICING */
.pricing-card{
  background:linear-gradient(180deg,var(--surface) 0%,var(--surface-2) 100%);
  border:1px solid rgba(255,214,10,.3);
  border-radius:28px;padding:48px 36px;text-align:center;
  box-shadow:0 40px 120px -40px rgba(255,214,10,.25);
}
.price-big{display:flex;align-items:baseline;justify-content:center;gap:6px;margin:18px 0 6px}
.price-big .currency{font-family:var(--display);font-size:24px;color:var(--muted)}
.price-big .amount{font-family:var(--display);font-size:84px;font-weight:700;color:var(--yellow);letter-spacing:-.04em;line-height:1}
.installments{color:var(--muted);margin:0 0 28px}
.checks{list-style:none;padding:0;margin:0 auto 32px;max-width:340px;text-align:left}
.checks li{padding:8px 0;border-bottom:1px dashed var(--border);font-size:15px}
.checks li:last-child{border-bottom:none}
.small{font-size:12px;color:var(--muted);margin:16px 0 0}

/* CTA */
.cta{padding:120px 0;text-align:center;background:radial-gradient(600px 300px at 50% 0%,rgba(255,214,10,.15),transparent 70%),var(--bg)}
.cta h2{font-family:var(--display);font-size:clamp(32px,5vw,52px);letter-spacing:-.02em;margin:0 0 14px}
.cta p{color:var(--muted);margin:0 0 32px}

/* FOOTER */
.footer{border-top:1px solid var(--border);padding:32px 0;background:var(--bg-2)}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}
.footer p{margin:0;color:var(--muted);font-size:13px}

/* NOVO CABEÇALHO DO PORTFÓLIO (ALINHADO À ESQUERDA) */
.section-head-portfolio {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head-portfolio .head-left {
  text-align: left;
}
.section-head-portfolio .head-right {
  max-width: 420px;
  text-align: left;
}
.section-head-portfolio h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.03em;
  margin: 8px 0 0;
  font-weight: 700;
}
.section-head-portfolio p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.eyebrow-portfolio {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
}

/* ESTRUTURA INTERNA DOS CARDS */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.category-text {
  font-size: 11px;
  letter-spacing: .08em;
  color: #8e8e93;
  font-weight: 600;
}
.tag-vendido {
  font-size: 11px;
  color: var(--yellow);
  background: rgba(255, 214, 10, 0.06);
  border: 1px solid rgba(255, 214, 10, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Rodapé do card sutil com link de seta */
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.card-foot .price {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text); /* Preço branco/cinza claro conforme a imagem */
}
.link-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s ease;
}
.link-action:hover {
  color: var(--yellow);
}

/* Responsividade do cabeçalho */
@media (max-width: 768px) {
  .section-head-portfolio {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head-portfolio .head-right {
    max-width: 100%;
  }
}

/* SEÇÃO BENEFÍCIOS ACESSÍVEL E LIMPA */
.section-features {
  border-top: 1px solid var(--border);
  background: var(--bg) !important; /* Mantém o fundo escuro uniforme */
  padding: 120px 0;
}

.features-layout {
  text-align: left;
}

.features-head {
  max-width: 600px;
  margin-bottom: 64px;
}

.eyebrow-features {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 12px;
}

.features-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}

/* Itens sem as caixas cinzas (cards) */
.features-grid {
  gap: 48px 32px !important;
}

.feature-item {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-align: left;
}

/* Ícones minimalistas amarelos sem a caixa de fundo */
.feature-icon-clean {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.feature-item h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--text);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   CORREÇÃO VISUAL: PORTFÓLIO (IMAGEM 1)
   ========================================================================== */
.portfolio-section {
  padding: 120px 0 80px;
  background: var(--bg);
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  text-align: left;
}

.portfolio-head .head-left {
  text-align: left;
}

.portfolio-head .head-right {
  max-width: 440px;
  text-align: left;
}

.portfolio-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.03em;
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.portfolio-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.portfolio-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
  display: block;
}

/* Grid independente */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Novo Card sem efeitos conflitantes */
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
}

.portfolio-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.portfolio-category {
  font-size: 11px;
  letter-spacing: .08em;
  color: #8e8e93;
  font-weight: 600;
}

.portfolio-tag-vendido {
  font-size: 11px;
  color: var(--yellow);
  background: rgba(255, 214, 10, 0.05);
  border: 1px solid rgba(255, 214, 10, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.portfolio-card-body h3 {
  font-family: var(--display);
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.portfolio-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.portfolio-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.portfolio-price {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.portfolio-link-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}

.portfolio-link-action:hover {
  color: var(--yellow);
}

/* ==========================================================================
   CORREÇÃO VISUAL: BENEFÍCIOS (IMAGEM 1)
   ========================================================================== */
.clean-features-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.clean-features-head {
  text-align: left;
  max-width: 620px;
  margin-bottom: 64px;
}

.clean-features-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 12px;
}

.clean-features-head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 48px);
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}

/* Grid sem cards, apenas texto livre */
.clean-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.clean-feature-item {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-align: left;
  box-shadow: none !important;
  transform: none !important;
}

.clean-feature-icon {
  font-size: 32px;
  color: var(--yellow);
  margin-bottom: 20px;
  line-height: 1;
}

.clean-feature-item h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
}

.clean-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVIDADE PONTUAL */
@media (max-width: 980px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .clean-features-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .clean-features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NOVA SEÇÃO DE PREÇOS COM CABEÇALHO (CONFORME A IMAGEM)
   ========================================================================== */

/* Estilos do Cabeçalho de Cima */
.pricing-header-top {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-eyebrow-top {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 16px;
}
.pricing-header-top h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 12px 0;
  color: var(--text);
}
.pricing-header-top p {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  margin: 0;
}

/* Container do Card Principal */
.pricing-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

/* Lado Esquerdo */
.pricing-info {
  padding: 56px;
  background: #0d0d0d;
  text-align: left;
}
.eyebrow-pricing {
  font-size: 11px;
  letter-spacing: .08em;
  color: #8e8e93;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.pricing-info h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 32px 0;
  color: var(--text);
}
.checks-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checks-new li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #e2e2e2;
}
.checks-new li span {
  color: var(--yellow);
  font-weight: bold;
}

/* Lado Direito (Card Amarelo) */
.pricing-action-card {
  background: var(--yellow);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.pricing-tag {
  font-size: 11px;
  letter-spacing: .08em;
  color: #554000;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #050505;
}
.currency-new {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
}
.amount-new {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}
.installments-new {
  font-size: 15px;
  color: #403000;
  margin: 8px 0 24px;
  font-weight: 500;
}
.terms-text {
  font-size: 13px;
  color: #403000;
  line-height: 1.5;
  margin: 0 0 40px 0;
}

/* Botão de Compra Preto */
.btn-pricing-submit {
  width: 100%;
  background: #050505;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .2s ease;
}
.btn-pricing-submit:hover {
  background: #111111;
  transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .pricing-info, .pricing-action-card {
    padding: 40px 24px;
  }
  .pricing-header-top h2 {
    font-size: 32px;
  }
}

/* ==========================================================================
   NOVA SEÇÃO FINAL E RODAPÉ (CONFORME A IMAGEM image_9159e6.png)
   ========================================================================== */

/* Nova CTA Centrada */
.cta-new {
  padding: 140px 0;
  text-align: center;
  background: var(--bg);
}
.cta-new-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.display-cta {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 24px 0;
  color: var(--text);
}
.accent-cta {
  color: var(--yellow);
}
.lead-cta {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  margin: 0 0 40px 0;
  max-width: 580px;
  line-height: 1.5;
}

/* Botão Amarelo com Seta */
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #050505;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s ease, transform .15s ease;
}
.btn-cta-final:hover {
  background: var(--yellow-2);
  transform: translateY(-1px);
}

/* Novo Layout do Footer */
.footer-new {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
  background: var(--bg);
}
.footer-new-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.brand-name-footer {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--yellow);
  letter-spacing: -.03em;
  line-height: 1;
}
.footer-slogan {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-right {
  align-self: center;
}
.footer-right p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Ajustes de Responsividade */
@media (max-width: 768px) {
  .cta-new {
    padding: 100px 0;
  }
  .footer-new-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-right {
    align-self: flex-start;
  }
}

/* ==========================================================================
   SEÇÃO AVALIAÇÕES ALINHADA À ESQUERDA (PRIMEIRA IMAGEM)
   ========================================================================== */

.section-reviews-left {
  padding: 120px 0;
  background: var(--bg);
}

.reviews-head-left {
  text-align: left;
  margin-bottom: 56px;
}

.eyebrow-reviews-left {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 12px;
}

.reviews-head-left h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0;
  color: var(--text);
  line-height: 1.1;
}

.accent-reviews {
  color: var(--yellow);
}

/* Customização interna dos cards de Review */
.review-left-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stars-left {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-left-card blockquote {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e2e2;
  font-weight: 400;
  flex-grow: 1;
}

/* Linha sutil divisória interna */
.review-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin: 0 0 16px 0;
}

.review-left-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-left-card figcaption strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.review-left-card figcaption span {
  color: var(--muted);
  font-size: 13px;
}

/* ==========================================================================
   SEÇÃO BENEFÍCIOS REESTRUTURADA COM CARDS (CONFORME image_90f42f.png)
   ========================================================================== */

.detailed-features-section {
  padding: 120px 0;
  background: #090909; /* Um tom sutilmente mais claro que o preto absoluto básico */
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.detailed-features-head {
  text-align: left;
  max-width: 700px;
  margin-bottom: 56px;
}

.detailed-features-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 16px;
}

.detailed-features-head h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.accent-details {
  color: var(--yellow);
}

/* Grid configurado em 4 colunas */
.detailed-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Estilo exato da caixinha (Card) da Imagem 1 */
.detailed-feature-item {
  background: #0d0d0d;
  border: 1px solid #161616;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.detailed-feature-item:hover {
  border-color: rgba(255, 214, 10, 0.15);
}

/* Mini caixa interna para os ícones */
.detailed-feature-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 214, 10, 0.05);
  border: 1px solid rgba(255, 214, 10, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 24px;
}

.detailed-feature-icon-box svg {
  width: 18px;
  height: 18px;
}

.detailed-feature-item h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text);
}

.detailed-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Ajustes de tela */
@media (max-width: 1024px) {
  .detailed-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .detailed-features-grid {
    grid-template-columns: 1fr;
  }
  .detailed-features-head h2 {
    font-size: 32px;
  }
}