/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */

/* ── HERO ──────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: 80px;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

/* Background gem visual — right, faint */
.hero-gem-bg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 50vw);
  opacity: .6;
  pointer-events: none;
  animation: gem-float 12s ease-in-out infinite;
}

@keyframes gem-float {

  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  33% {
    transform: translateY(-52%) rotate(.8deg);
  }

  66% {
    transform: translateY(-48%) rotate(-.6deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 72px 0 56px;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-right: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(1.6);
  }
}

.hero-h1 {
  font-family: var(--f-sans);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--sand);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 1rem;
  color: var(--sand-60);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

/* Pull quote accent */
.hero-sub em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--sand);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Hero bar ── */
.hero-bar {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.hero-metric {
  padding: 32px 4%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-metric:last-child {
  border-right: none;
}

.hm-val {
  font-family: var(--f-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -.03em;
}

.hm-val span {
  color: var(--gold);
}

.hm-desc {
  font-size: .78rem;
  color: var(--sand-35);
  line-height: 1.5;
}

/* ── MANIFESTO ──────────────────────── */
.manifesto-pull {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--sand);
  line-height: 1.4;
  letter-spacing: -.01em;
}

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

/* ── DIFERENCIAIS ────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.diff-card {
  background: var(--p-deep);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}

.diff-card:hover {
  background: var(--p-light);
}

.diff-card:hover::before {
  transform: scaleX(1);
}

.diff-num {
  font-family: var(--f-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.diff-title {
  font-family: var(--f-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 0 0 14px;
}

.diff-text {
  font-size: .84rem;
  color: var(--sand-60);
  line-height: 1.72;
}

/* ── PROCESSO ───────────────────────── */
.process-steps {
  margin-top: 56px;
}

.ps {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: padding-left .4s var(--ease);
}

.ps:last-child {
  border-bottom: 1px solid var(--border);
}

.ps:hover {
  padding-left: 12px;
}

.ps-num {
  font-family: var(--f-sans);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(244, 239, 231, .05);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .4s;
}

.ps:hover .ps-num {
  color: var(--gold-15);
}

.ps-tag {
  font-family: var(--f-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.ps-title {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -.02em;
  margin: 0;
}

.ps-desc {
  font-size: .88rem;
  color: var(--sand-60);
  line-height: 1.78;
  padding-top: 6px;
}

/* ── SERVIÇOS ───────────────────────── */
.svc-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--p-mid);
  border: 1px solid var(--border-s);
  border-radius: 4px;
}

.svc-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--sand-60);
  letter-spacing: .02em;
}

.svc-includes li::before {
  content: '✓';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

.svc-includes+.svc-grid {
  margin-top: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.svc {
  background: var(--p-deep);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .35s;
}

.svc:hover {
  background: var(--p-mid);
}

.svc-featured {
  background: var(--p-mid);
}

.svc-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.svc-badge {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--graphite);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

.svc-name {
  font-family: var(--f-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -.025em;
  margin: 0 0 10px;
}

.svc-tagline {
  font-size: .82rem;
  color: var(--sand-60);
  line-height: 1.6;
  margin-bottom: 28px;
}

.svc-from {
  font-family: var(--f-sans);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-35);
  display: block;
  margin-bottom: 4px;
}

.svc-amount {
  font-family: var(--f-sans);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.svc-cur {
  font-size: 1rem;
  font-weight: 400;
  color: var(--sand-35);
  vertical-align: super;
}

.svc-divider {
  height: 1px;
  background: var(--border-s);
  margin-bottom: 24px;
}

.svc-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .82rem;
  color: var(--sand-60);
  line-height: 1.5;
}

.svc-feat::before {
  content: '—';
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.svc-feat.incl {
  color: var(--sand-35);
}

.svc-feat.incl::before {
  content: '✓';
  color: rgba(200, 169, 107, .4);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand-35);
  transition: color .3s;
}

.svc-link::after {
  content: '→';
  transition: transform .3s var(--ease);
}

.svc:hover .svc-link {
  color: var(--gold);
}

.svc:hover .svc-link::after {
  transform: translateX(6px);
}

.svc-featured .svc-link {
  color: var(--gold);
}

/* ── PORTFÓLIO ──────────────────────── */
.pf-list {
  margin-top: 56px;
}

.pf-item {
  display: grid;
  grid-template-columns: 52px 1fr 180px;
  align-items: start;
  gap: 32px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: padding-left .4s var(--ease);
  text-decoration: none;
  color: inherit;
}

.pf-item:last-child {
  border-bottom: 1px solid var(--border);
}

.pf-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--gold-06);
  transition: left .55s var(--ease);
  z-index: 0;
}

.pf-item:hover::before {
  left: 0;
}

.pf-item:hover {
  padding-left: 8px;
}

.pf-item>* {
  position: relative;
  z-index: 1;
}

.pf-num {
  font-family: var(--f-sans);
  font-size: .75rem;
  font-weight: 700;
  color: var(--sand-35);
  padding-top: 4px;
  letter-spacing: .06em;
}

.pf-cat {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pf-name {
  font-family: var(--f-sans);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -.025em;
  margin-bottom: 24px;
  transition: color .3s;
}

.pf-item:hover .pf-name {
  color: var(--gold);
}

.pf-ext {
  font-size: .75em;
  opacity: .5;
  transition: opacity .3s;
}

.pf-item:hover .pf-ext {
  opacity: 1;
}

.pf-case {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pf-case-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand-35);
  margin-bottom: 6px;
}

.pf-case-text {
  font-size: .82rem;
  color: var(--sand-60);
  line-height: 1.55;
}

.pf-case-text strong {
  color: var(--sand);
  font-weight: 600;
}

.pf-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: .65;
  transition: opacity .4s;
}

.pf-item:hover .pf-thumb {
  opacity: 1;
}

.pf-thumb svg {
  width: 100%;
  height: 100%;
}

/* ── DEPOIMENTOS ────────────────────── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.t-card {
  background: var(--p-deep);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
}

.t-card:hover {
  background: var(--p-mid);
}

.t-stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: 3px;
}

.t-text {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--sand);
  line-height: 1.72;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--p-light);
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.t-name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--sand);
}

.t-role {
  font-size: .7rem;
  color: var(--sand-35);
  margin-top: 2px;
}

.t-slot {
  background: transparent !important;
  border: 1px dashed rgba(200, 169, 107, .15);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
}

.t-slot-icon {
  font-size: 1.5rem;
  opacity: .22;
}

.t-slot-text {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-35);
  margin-top: 8px;
}

/* ── CTA SECTION ────────────────────── */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-word {
  position: absolute;
  bottom: -10%;
  left: -1%;
  font-family: var(--f-sans);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 231, .028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.cta-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.cta-h2 {
  font-family: var(--f-sans);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--sand);
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}

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

.cta-sub {
  font-size: .95rem;
  color: var(--sand-60);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-footnote {
  font-size: .72rem;
  color: var(--sand-35);
  margin-top: 20px;
}

/* ── FAQ ────────────────────────────── */
.faq-list {
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: color .3s;
}

.faq-q-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-q:hover .faq-q-text {
  color: var(--gold);
}

.faq-q-text {
  font-family: var(--f-sans);
  font-size: .92rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.4;
  transition: color .3s;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-s);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .3s, border-color .3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-15);
  border-color: var(--gold);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  font-size: .88rem;
  color: var(--sand-60);
  line-height: 1.82;
  padding-bottom: 22px;
  max-width: 680px;
}

/* ── FOOTER ─────────────────────────── */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-name {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--sand);
}

.footer-logo-sub {
  font-family: var(--f-sans);
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.footer-copy {
  font-size: .72rem;
  color: var(--sand-35);
  letter-spacing: .04em;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--f-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand-35);
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--sand);
}

/* ── Formulário de lead ─────────────── */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.lead-form {
  background: var(--p-mid);
  border: 1px solid var(--border-s);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sand);
  margin-bottom: 4px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-row input,
.form-row textarea {
  font-family: var(--f-sans);
  font-size: .9rem;
  color: var(--sand);
  background: var(--p-deep);
  border: 1px solid var(--border-s);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color .3s;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--sand-35);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-privacy {
  font-size: .72rem;
  color: var(--sand-35);
  line-height: 1.6;
}

.form-privacy a {
  color: var(--gold);
}

.form-success .form-feedback {
  display: block;
  color: #25D366;
}

.form-error .form-feedback {
  display: block;
  color: #e07070;
}

.form-feedback {
  display: none;
  font-size: .82rem;
  margin-top: -8px;
}

.lead-form .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ── Cookie banner ──────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: rgba(10, 46, 47, .97);
  border-top: 1px solid var(--border-s);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
}

.cookie-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: .82rem;
  color: var(--sand-60);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .3s, color .3s;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--graphite);
}

.cookie-btn-accept:hover {
  background: var(--sand);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--sand-35);
  border: 1px solid var(--border-s);
}

.cookie-btn-reject:hover {
  color: var(--sand);
  border-color: var(--sand-35);
}

/* ── Footer contact ─────────────────── */
.footer-contact {
  font-style: normal;
  font-size: .72rem;
  color: var(--sand-35);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold);
}