/* ==========================================================================
   PURECREATINA - HIGH CONVERTING LUXURY FITNESS STYLES
   Design: Athletic Dark Theme with Neon Emerald, Electric Cyan & Gold Accents
   ========================================================================== */

:root {
  --bg-deep: #06080d;
  --bg-main: #0a0e17;
  --bg-card: #111726;
  --bg-card-hover: #162033;
  --bg-elevated: #1b253b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(0, 245, 155, 0.35);

  --primary: #00f59b;
  --primary-hover: #00dc89;
  --primary-dark: #004d30;
  --primary-glow: rgba(0, 245, 155, 0.4);

  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.3);
  --yellow: #fbbf24;
  --purple: #a855f7;
  --red-alert: #ef4444;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #080c14;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 35px var(--primary-glow);
}

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

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

/* ==========================================================================
   TOP ANNOUNCEMENT BAR WITH COUNTDOWN
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #0d131f 0%, #152238 50%, #0d131f 100%);
  border-bottom: 1px solid rgba(0, 245, 155, 0.25);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.timer-badge {
  background: rgba(0, 245, 155, 0.12);
  border: 1px solid rgba(0, 245, 155, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.timer-badge span {
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.announcement-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.announcement-link:hover {
  background: var(--primary);
  color: #000;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px var(--primary));
}

.brand-name strong {
  color: var(--primary);
}

.header-nav {
  display: flex;
  gap: 1.75rem;
}

.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
}

.btn-header {
  padding: 0.5rem 1.25rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00f59b 0%, #00ca7e 100%);
  color: #06090e;
  box-shadow: 0 6px 22px rgba(0, 245, 155, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2bf8a9 0%, #00e08c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 245, 155, 0.5);
}

.btn-secondary {
  background: #182236;
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: #202d47;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #00f59b, #00d4ff, #00f59b);
  border-radius: var(--radius-pill);
  z-index: -1;
  opacity: 0.65;
  filter: blur(12px);
  animation: glowAnimation 4s linear infinite;
}

@keyframes glowAnimation {
  0% { filter: blur(10px) brightness(1); }
  50% { filter: blur(16px) brightness(1.3); }
  100% { filter: blur(10px) brightness(1); }
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION (2 COLUNAS MODERNAS COM PRODUTO 3D)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, #0d1524 0%, var(--bg-deep) 65%);
}

.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 1;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: rgba(0, 245, 155, 0.12);
}

.hero-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: rgba(0, 212, 255, 0.1);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 245, 155, 0.1);
  border: 1px solid rgba(0, 245, 155, 0.3);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.35rem;
  letter-spacing: -1px;
}

.text-highlight {
  background: linear-gradient(120deg, #00f59b 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.85rem;
}

.avatar-stack {
  display: flex;
}

.avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #06080d;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
}

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

.av-1 { background: #3b82f6; }
.av-2 { background: #ec4899; }
.av-3 { background: #10b981; }
.av-4 { background: #f59e0b; }

.proof-rating-text .stars {
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1;
}

.proof-rating-text p {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.hero-proof-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #e2e8f0;
}

.pill-icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.lock-icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* Coluna Visual do Produto no Hero */
.hero-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-showcase-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-halo {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: haloPulse 4s ease-in-out infinite;
}

@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

.showcase-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 245, 155, 0.2);
  border: 1px solid rgba(0, 245, 155, 0.3);
  transition: transform 0.4s ease;
}

.showcase-img:hover {
  transform: scale(1.03) translateY(-4px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(13, 20, 34, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.float-top-left {
  top: -15px;
  left: -20px;
  border-left: 3px solid var(--primary);
}

.float-bottom-right {
  bottom: -15px;
  right: -20px;
  border-left: 3px solid var(--cyan);
  animation-delay: 2s;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.float-icon {
  font-size: 1.4rem;
}

.float-text strong {
  display: block;
  font-size: 0.82rem;
  color: #ffffff;
}

.float-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.floating-badge-bottom {
  position: absolute;
  bottom: -35px;
  z-index: 3;
  background: rgba(6, 9, 14, 0.9);
  border: 1px solid rgba(0, 245, 155, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 245, 155, 0.08);
  border: 1px solid rgba(0, 245, 155, 0.25);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.section-tag-gold {
  color: var(--yellow);
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.section-tag-cyan {
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   BENEFITS SECTION (BLOCO 2)
   ========================================================================== */
.benefits-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d1320 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 245, 155, 0.15);
}

.benefit-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.benefit-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.icon-yellow {
  background: rgba(251, 191, 36, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.icon-green {
  background: rgba(0, 245, 155, 0.12);
  color: var(--primary);
  border: 1px solid rgba(0, 245, 155, 0.3);
}

.icon-cyan {
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.35rem;
}

.benefit-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 245, 155, 0.08);
  border: 1px solid rgba(0, 245, 155, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* ==========================================================================
   INTERACTIVE CALCULATOR
   ========================================================================== */
.calculator-section {
  background: var(--bg-deep);
}

.calculator-card {
  background: linear-gradient(145deg, #111827 0%, #0c121e 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.1);
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.calc-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.calculator-form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.input-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.weight-input {
  background: #080c14;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.7rem 3.5rem 0.7rem 1.2rem;
  width: 180px;
  outline: none;
  transition: border-color 0.2s;
}

.weight-input:focus {
  border-color: var(--primary);
}

.unit-tag {
  position: absolute;
  right: 1.2rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.btn-calc {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.result-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.res-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.res-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
}

.res-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-cta-callout {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.calc-cta-callout p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */
.timeline-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d121c 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.3s;
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   OFFERS SECTION (BLOCO 3) COM FOTOS REAIS
   ========================================================================== */
.offers-section {
  background: var(--bg-deep);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.25);
}

.featured-product {
  background: linear-gradient(180deg, #152236 0%, #111827 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 0 35px rgba(0, 245, 155, 0.2);
  transform: scale(1.03);
}

.featured-product:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 50px rgba(0, 245, 155, 0.35);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 0.4rem 1.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
  white-space: nowrap;
}

.edition-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.badge-gold {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.badge-blue {
  background: linear-gradient(90deg, #0284c7, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
}

/* Imagens Reais dos Produtos */
.product-image-container {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-real-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.product-card:hover .product-real-img {
  transform: scale(1.06);
}

.product-info-box {
  margin-bottom: 1.25rem;
}

.rating-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.product-brand-tag {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.product-specs {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.spec-label {
  color: var(--text-secondary);
}

.spec-value {
  font-weight: 600;
  color: #e2e8f0;
}

.spec-value.approved {
  color: var(--primary);
}

.highlight-spec {
  color: var(--cyan);
}

.product-quote {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.5;
}

/* Pricing Block */
.product-pricing {
  margin-bottom: 1.35rem;
  text-align: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.price-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.old-price {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: line-through;
}

.discount-pill {
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.price-tag .currency {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.price-value small {
  font-size: 1.15rem;
}

.installments-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.secure-badge-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.secure-badge-box svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   PROOF & ANTI-FRAUD SECTION (BLOCO 4)
   ========================================================================== */
.proof-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #101624 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.alert-box-warning {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.12);
}

.alert-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.alert-title {
  font-family: var(--font-heading);
  color: #ff6b6b;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
}

.alert-description {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.alert-description strong {
  color: #ffffff;
}

.alert-action-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 245, 155, 0.1);
  border: 1px solid rgba(0, 245, 155, 0.25);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.alert-action-badge svg {
  width: 16px;
  height: 16px;
}

/* Comparison Table */
.comparison-container {
  margin-bottom: 4rem;
}

.comparison-header {
  margin-bottom: 2rem;
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  background: #080d16;
}

.col-fake {
  color: #f87171;
  background: rgba(239, 68, 68, 0.05);
}

.col-pure {
  color: var(--primary);
  background: rgba(0, 245, 155, 0.05);
}

.text-danger {
  color: #fca5a5;
}

.text-success {
  color: #86efac;
}

.testimonials-header {
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.avatar-2 { background: linear-gradient(135deg, #ec4899, #be185d); }
.avatar-3 { background: linear-gradient(135deg, #10b981, #047857); }

.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.author-tag {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.trust-seals-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.trust-seal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seal-icon {
  font-size: 1.5rem;
}

.seal-text {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.seal-text strong {
  color: #ffffff;
}

/* ==========================================================================
   FAQ SECTION (BLOCO 5) - ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--bg-deep);
}

.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-inner p + p {
  margin-top: 0.75rem;
}

.faq-answer-inner strong {
  color: #ffffff;
}

.faq-bottom-cta {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1rem;
}

.faq-cta-headline {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 3rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 400px;
}

.footer-desc {
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-divider {
  border: 0;
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-disclaimer strong {
  color: #94a3b8;
}

.copyright-text {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SOCIAL PROOF TOAST NOTIFICATION
   ========================================================================== */
.purchase-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(14, 21, 33, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 245, 155, 0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 95;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 340px;
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #00a86b);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-text {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.2;
}

.toast-product {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--primary);
  display: block;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.25rem;
}

.toast-close:hover {
  color: #ffffff;
}

/* ==========================================================================
   FLOATING CTA BAR (MOBILE / SCROLL)
   ========================================================================== */
.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 245, 155, 0.3);
  padding: 0.75rem 1rem;
  z-index: 100;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.floating-cta-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-info {
  display: flex;
  flex-direction: column;
}

.floating-badge {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-badge,
  .hero-social-proof,
  .hero-proof-pills,
  .hero-actions {
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .offers-grid,
  .timeline-grid,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .featured-product {
    transform: none;
  }

  .featured-product:hover {
    transform: translateY(-4px);
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hero-section {
    padding: 3rem 0 4rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .alert-box-warning {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .alert-icon {
    font-size: 1.8rem;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .purchase-toast {
    bottom: 70px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .btn-lg {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }

  .announcement-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}
