:root {
  --paper: #F0EAD6;
  --black: #1A1A1A;
  --red: #DC143C;
  --gold: #DC143C;
  --white: #F5F0E8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--paper);
  font-family: 'Courier Prime', monospace;
  overflow-x: hidden;
}

/* GRUNGE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

/* SCANLINES */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 999;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ========================
   BARRA TOPO
======================== */
.top-bar {
  background: var(--red);
  padding: 10px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--black);
}

.top-bar::before {
  content: 'OFERTA LIMITADA • OFERTA LIMITADA • OFERTA LIMITADA • OFERTA LIMITADA • OFERTA LIMITADA • ';
  position: absolute;
  top: 0; left: 0;
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.top-bar-inner {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
}

.top-countdown .num {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  animation: jitter 0.1s infinite;
}

.top-countdown .sep {
  font-size: 22px;
  color: var(--paper);
  font-weight: 700;
  opacity: 0.7;
}

.top-countdown .lbl {
  font-size: 9px;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-top: -2px;
}

.top-unit { text-align: center; }

@keyframes jitter {
  0%, 100% { transform: translate(0,0); }
  25% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, -1px); }
}

/* ========================
   HERO
======================== */
.hero {
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.hero-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 14vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 6px;
  position: relative;
}

.hero h1 .scratch {
  color: var(--red);
  position: relative;
  display: inline-block;
  animation: glitch 4s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { 
    text-shadow: none;
    transform: translate(0);
  }
  92% { 
    text-shadow: -3px 0 var(--red), 3px 0 cyan;
    transform: translate(-2px, 0);
  }
  94% {
    text-shadow: 3px 0 var(--red), -3px 0 cyan;
    transform: translate(2px, 0);
  }
  96% {
    text-shadow: none;
    transform: translate(0);
  }
}

.hero-sub {
  font-size: 14px;
  color: rgba(240,234,214,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.hero-sub strong { color: var(--paper); }

/* HERO IMAGE */
.hero-img-wrap {
  margin: 24px -20px;
  position: relative;
}

.hero-img-wrap::before {
  content: 'MÉTODO 3R';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 20vw, 100px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220,20,60,0.2);
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: contrast(1.1) saturate(0.9);
}

/* ========================
   CTA BUTTON
======================== */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  animation: btn-jitter 6s infinite;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
}

.btn::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
}

@keyframes btn-jitter {
  0%, 95%, 100% { transform: translate(0,0); box-shadow: 4px 4px 0 var(--black); }
  96% { transform: translate(-2px, 1px); box-shadow: 6px 3px 0 var(--black); }
  97% { transform: translate(1px, -1px); box-shadow: 3px 5px 0 var(--black); }
}

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.5);
  margin-top: 12px;
}

.urgency-tag span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ========================
   SECTIONS
======================== */
section {
  padding: 60px 0;
  border-top: 1px solid rgba(240,234,214,0.1);
  position: relative;
}

.section-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(220,20,60,0.3);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--paper);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 0px;
}

/* ========================
   DOR
======================== */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(240,234,214,0.04);
  border-left: 3px solid rgba(220,20,60,0.4);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  transition: border-color 0.1s;
}

.pain-list li:hover { border-left-color: var(--red); }

.pain-list li::before {
  content: '✗';
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-close {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  padding: 20px;
  background: var(--red);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}

.pain-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,0.05) 3px, rgba(0,0,0,0.05) 6px);
}

/* ========================
   MÉTODO 3R
======================== */
.method-text {
  font-size: 14px;
  color: rgba(240,234,214,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
  border-left: 2px solid rgba(220,20,60,0.3);
  padding-left: 12px;
}

.r-blocks {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 28px 0;
}

.r-block {
  background: rgba(240,234,214,0.03);
  border: 1px solid rgba(240,234,214,0.08);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.1s;
}

.r-block:hover { background: rgba(240,234,214,0.06); }

.r-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(240,234,214,0.01) 4px, rgba(240,234,214,0.01) 8px);
}

.r-num-bg {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 90px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220,20,60,0.1);
  line-height: 1;
  pointer-events: none;
}

.r-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: block;
}

.r-name {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.r-desc {
  font-size: 13px;
  color: rgba(240,234,214,0.6);
  line-height: 1.7;
  max-width: 460px;
  position: relative;
}

.method-close {
  text-align: center;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: rgba(240,234,214,0.5);
  font-style: italic;
  padding: 20px;
  border: 1px dashed rgba(240,234,214,0.15);
  margin-top: 4px;
}

/* ========================
   SOCIAL PROOF BAR
======================== */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 28px;
  padding: 14px 18px;
  background: rgba(240,234,214,0.04);
  border: 1px solid rgba(240,234,214,0.1);
  border-left: 3px solid var(--red);
}

.sp-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sp-avatars {
  display: flex;
  flex-direction: row;
}

.sp-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: rgba(240,234,214,0.5);
  margin-left: -8px;
  flex-shrink: 0;
  position: relative;
}

.sp-avatar:first-child { margin-left: 0; }

.sp-avatar-more {
  background: rgba(220,20,60,0.2) !important;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.sp-number {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  white-space: nowrap;
}

.sp-divider {
  width: 1px;
  height: 32px;
  background: rgba(240,234,214,0.1);
  flex-shrink: 0;
}

.sp-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-stars {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}

.sp-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(240,234,214,0.4);
  letter-spacing: 0.05em;
}

/* ========================
   ENEMY BLOCK
======================== */
.enemy-block {
  margin: 24px 0 0;
  padding: 20px 20px 20px 18px;
  background: rgba(220,20,60,0.05);
  border: 1px solid rgba(220,20,60,0.2);
  border-left: 4px solid var(--red);
}

.enemy-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.enemy-text {
  font-size: 13px;
  color: rgba(240,234,214,0.65);
  line-height: 1.8;
}

/* ========================
   PRICE CONTEXT
======================== */
.price-context {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: rgba(240,234,214,0.5);
  font-style: italic;
  margin: 10px 0 6px;
  line-height: 1.6;
}

/* ========================
   INCLUSO
======================== */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 16px;
  background: rgba(240,234,214,0.03);
  border-left: 2px solid transparent;
  transition: border-color 0.1s, background 0.1s;
}

.include-item:hover {
  border-left-color: var(--red);
  background: rgba(240,234,214,0.05);
}

.include-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
}

.include-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.include-desc {
  font-size: 13px;
  color: rgba(240,234,214,0.55);
  line-height: 1.6;
}

/* ========================
   PARA QUEM
======================== */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

@media(max-width:500px){ .for-grid { grid-template-columns: 1fr; } }

.for-block {
  background: rgba(240,234,214,0.03);
  border: 1px solid rgba(240,234,214,0.07);
  padding: 24px 20px;
}

.for-block-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240,234,214,0.1);
}

.for-block-title.yes { color: var(--red); }
.for-block-title.no { color: rgba(240,234,214,0.3); }

.for-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.for-list li {
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(240,234,214,0.7);
}

.for-list li.yes::before { content: '✓'; color: var(--red); flex-shrink: 0; font-weight: 700; }
.for-list li.no::before { content: '✗'; color: rgba(240,234,214,0.25); flex-shrink: 0; }
.for-list li.no { color: rgba(240,234,214,0.3); }

/* ========================
   PREÇO
======================== */
.price-box {
  background: rgba(240,234,214,0.03);
  border: 1px solid rgba(240,234,214,0.1);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.price-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(240,234,214,0.01) 6px, rgba(240,234,214,0.01) 12px);
  pointer-events: none;
}

.price-compare {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price-compare-item .amount {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(240,234,214,0.25);
  text-decoration: line-through;
  display: block;
}

.price-compare-item .label {
  font-size: 11px;
  color: rgba(240,234,214,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-from {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.4);
  display: block;
  margin-bottom: 6px;
}

.price-anchor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 24px;
}

.price-old {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(240,234,214,0.3);
  text-decoration: line-through;
}

.price-badge {
  background: var(--red);
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(56px, 14vw, 80px);
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 4px 4px 0 rgba(220,20,60,0.3);
}

.price-note {
  font-size: 12px;
  color: rgba(240,234,214,0.4);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ========================
   URGÊNCIA
======================== */
.urgency-box {
  background: #0d0000;
  border: 1px solid rgba(220,20,60,0.3);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-box::before {
  content: 'EXPIRA HOJE • EXPIRA HOJE • EXPIRA HOJE • EXPIRA HOJE • EXPIRA HOJE • EXPIRA HOJE • ';
  position: absolute;
  bottom: 0; left: 0;
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  color: rgba(220,20,60,0.2);
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: marquee 6s linear infinite;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 20px 0;
}

.cd-unit {
  background: var(--black);
  border: 1px solid rgba(240,234,214,0.1);
  padding: 12px 16px;
  min-width: 64px;
  text-align: center;
}

.cd-num {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  animation: jitter 0.15s infinite;
}

.cd-lbl {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.3);
  margin-top: 4px;
  display: block;
  font-family: 'Courier Prime', monospace;
}

.launch-price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.launch-label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.35);
  display: block;
}

.launch-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px,12vw,64px);
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(220,20,60,0.3);
}

.launch-arrow {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: rgba(240,234,214,0.2);
}

.launch-after {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px,8vw,40px);
  font-weight: 700;
  color: rgba(240,234,214,0.2);
  text-decoration: line-through;
}

/* ========================
   GARANTIA
======================== */
.guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(240,234,214,0.03);
  border: 1px solid rgba(240,234,214,0.08);
  border-left: 4px solid var(--red);
  padding: 28px 20px;
}

.guarantee-icon { font-size: 32px; flex-shrink: 0; }

.guarantee-title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--paper);
}

.guarantee-text { font-size: 13px; color: rgba(240,234,214,0.55); line-height: 1.7; }

/* ========================
   FINAL CTA
======================== */
.final-section {
  text-align: center;
  padding: 80px 0 100px;
  border-top: 1px solid rgba(240,234,214,0.1);
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '3R';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 300px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220,20,60,0.05);
  pointer-events: none;
  line-height: 1;
}

.final-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.final-section p {
  font-size: 14px;
  color: rgba(240,234,214,0.5);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Courier Prime', monospace;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 11px;
  color: rgba(240,234,214,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Courier Prime', monospace;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.97);
  border-top: 2px solid var(--red);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar p {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: rgba(240,234,214,0.5);
  letter-spacing: 0.05em;
}

.sticky-bar strong { color: var(--paper); }

@media(max-width:480px){ .sticky-bar p { display: none; } .sticky-bar .btn { width: 100%; text-align: center; } }

footer {
  border-top: 1px solid rgba(240,234,214,0.08);
  padding: 32px 0 80px;
  text-align: center;
}

footer p {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(240,234,214,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* DEPOIMENTOS */
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -16px;
  padding: 8px 0;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before { left: 0; background: linear-gradient(to right, #1a1a1a, transparent); }
.testimonials-track-wrap::after  { right: 0; background: linear-gradient(to left,  #1a1a1a, transparent); }

.testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 32s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,234,214,0.08);
  border-radius: 4px;
  padding: 20px 22px;
  width: 280px;
  flex-shrink: 0;
}
.tcard-stars { color: var(--red); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.tcard-text {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: rgba(240,234,214,0.65);
  line-height: 1.75;
  margin-bottom: 14px;
}
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(220,20,60,0.15);
  border: 1px solid rgba(220,20,60,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--red); flex-shrink: 0;
}
.tcard-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--paper);
}
.tcard-city {
  font-size: 11px;
  color: rgba(240,234,214,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* GRADE DEPOIMENTOS */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media(max-width: 768px) {
  .tgrid { grid-template-columns: 1fr; }
}
@media(min-width: 769px) and (max-width: 1024px) {
  .tgrid { grid-template-columns: repeat(2, 1fr); }
}

.tcard-hidden {
  display: none;
}

.btn-ver-mais {
  background: transparent;
  border: 1px solid rgba(240,234,214,0.15);
  color: rgba(240,234,214,0.45);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 13px 32px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.btn-ver-mais:hover {
  color: var(--paper);
  border-color: rgba(240,234,214,0.35);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
