/* ==========================================================================
   DESIGN SYSTEM & VARIÁVEIS CSS (ALTA CONVERSÃO & CRO)
   ========================================================================== */
:root {
  /* Cores Principais */
  --color-primary: #0f172a;       /* Slate Escuro Profundo */
  --color-primary-light: #1e293b;
  --color-text-main: #334155;     /* Grafite Suave para Leitura */
  --color-text-muted: #64748b;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;

  /* Cores de Ação & Destaque (Squint Test) */
  --color-action: #059669;        /* Verde Esmeralda de Conversão */
  --color-action-hover: #047857;
  --color-action-glow: rgba(5, 150, 105, 0.25);
  
  --color-accent: #f59e0b;        /* Âmbar / Dourado Promocional */
  --color-accent-dark: #b45309;
  --color-danger: #ef4444;

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sombras & Efeitos */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(5, 150, 105, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  touch-action: manipulation;
}

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

/* Container Responsivo */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Tipografia Base */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   1. BARRA DE URGÊNCIA NO TOPO
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.88rem;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-announcement p {
  margin: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fef08a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(254, 240, 138, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 240, 138, 0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.logo-symbol-pan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.brand-logo:hover .logo-symbol-pan {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 3px 8px rgba(220, 38, 38, 0.3));
}

.pan-symbol-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--color-text-dark, #0f172a);
  line-height: 1;
}

.brand-text-accent {
  color: #dc2626;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  user-select: none;
}

.footer-brand-text {
  color: #ffffff;
  font-size: 1.34rem;
}

.brand-text-accent-footer {
  color: #ef4444;
}

.header-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================================================
   BOTÕES DE ALTA CONVERSÃO
   ========================================================================== */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-header {
  background-color: var(--color-action);
  color: #fff;
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

.btn-header:hover {
  background-color: var(--color-action-hover);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 16px 28px;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  width: 100%;
}

.btn-primary small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 3px;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 25px rgba(5, 150, 105, 0.45);
}

/* Pulsação Sutil para Focar a Atenção */
.btn-pulse {
  animation: subtle-pulse 2.2s infinite;
}

@keyframes subtle-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 40px 0 50px 0;
  background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f1f5f9 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* Hero Status Pill */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   HEADLINE HERO
   ========================================================================== */
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.22;
  color: #0f172a;
}

.highlight-text {
  color: #047857;
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
  padding: 0 4px;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--color-text-main);
  margin-bottom: 22px;
}

.hero-key-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #065f46;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Box de Preço & CTA no Hero */
.hero-cta-box {
  background-color: var(--color-bg-white);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.price-callout {
  margin-bottom: 14px;
}

.old-price {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.main-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.installments {
  font-size: 1rem;
  color: var(--color-text-main);
}

.trust-microcopy {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

/* Visual Hero */
.media-card-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.floating-badge {
  position: absolute;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-mounted {
  top: 24px;
  left: 24px;
  border-left: 4px solid var(--color-action);
}

.badge-mounted strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.badge-mounted small {
  color: var(--color-action);
  font-weight: 600;
}

.badge-discount {
  top: 24px;
  right: 24px;
  background-color: #dc2626;
  color: #fff;
  flex-direction: column;
  text-align: center;
  padding: 6px 12px;
}

.badge-discount strong {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.badge-discount small {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.media-caption {
  padding: 12px 6px 4px 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ==========================================================================
   3. BARRA DE BENEFÍCIOS RÁPIDOS
   ========================================================================== */
.quick-benefits-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.b-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #ecfdf5;
  color: #059669;
  flex-shrink: 0;
}

.b-icon svg {
  width: 22px;
  height: 22px;
}

.b-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-primary);
}

.b-text span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SEÇÕES GERAIS / TÍTULOS
   ========================================================================== */
.section-header {
  margin-bottom: 40px;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-action);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   4. SEÇÃO PAS: PROBLEMAS & ALÍVIO
   ========================================================================== */
.agitation-section {
  padding: 70px 0;
  background-color: var(--color-bg-light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.problem-card {
  background-color: #ffffff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.p-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #fee2e2;
  color: #ef4444;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

.solution-bridge-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.bridge-badge {
  display: inline-block;
  background-color: var(--color-action);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.solution-bridge-box h3 {
  color: #ffffff;
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.solution-bridge-box p {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   5. UNBOXING SHOWCASE (10 PEÇAS)
   ========================================================================== */
.unboxing-section {
  padding: 70px 0;
  background-color: #ffffff;
}

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

.showcase-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: #e2e8f0;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.bonus-card {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.bonus-tag {
  background-color: #16a34a;
  color: #ffffff;
}

.card-icon-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.showcase-card p {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin: 0;
}

/* Macro Feature Card */
.feature-macro-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 30px;
}

.badge-accent {
  display: inline-block;
  background-color: #f59e0b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.feature-macro-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.macro-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   6. TABELA COMPARATIVA (CRO)
   ========================================================================== */
.comparison-section {
  padding: 70px 0;
  background-color: var(--color-bg-light);
}

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

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

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.96rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  background-color: #f8fafc;
  color: var(--color-primary);
}

.col-highlight {
  background-color: rgba(16, 185, 129, 0.05);
  font-weight: 600;
}

.col-competitor {
  color: var(--color-text-muted);
}

.badge-yes {
  color: #065f46;
  font-weight: 700;
}

.badge-no {
  color: #991b1b;
}

.price-highlight {
  color: var(--color-action);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* ==========================================================================
   7. REVIEWS & PROVA SOCIAL
   ========================================================================== */
.reviews-section {
  padding: 70px 0;
  background-color: #ffffff;
}

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

.review-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-primary);
}

.reviewer-info small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.review-img-box {
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
}

.review-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0;
}

.verified-badge {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-action);
}

/* ==========================================================================
   8. CARD DA OFERTA IRRESISTÍVEL (VALUE STACK)
   ========================================================================== */
.offer-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
}

.offer-card-container {
  background-color: #ffffff;
  color: var(--color-text-main);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  max-width: 960px;
  margin: 0 auto;
}

.offer-card-header {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  padding: 30px;
  text-align: center;
  position: relative;
}

.urgency-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(220, 38, 38, 0.25);
  border: 1px solid rgba(220, 38, 38, 0.6);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fca5a5;
}

.timer-display {
  background-color: #dc2626;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 1rem;
}

.offer-card-header h2 {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 6px;
}

.offer-card-header p {
  color: #9ca3af;
  margin: 0;
}

.offer-card-body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  padding: 40px;
  gap: 40px;
}

.stack-list h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.stack-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.stack-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.icon-check {
  color: var(--color-action);
  font-weight: 900;
  flex-shrink: 0;
}

.bonus-highlight {
  color: #047857;
  background-color: #ecfdf5;
  padding: 2px 6px;
  border-radius: 4px;
}

.total-value-anchor {
  padding-top: 14px;
  border-top: 1px dashed var(--color-border);
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Coluna de Preço e CTA */
.offer-pricing-box {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-discount-badge {
  background-color: #dc2626;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: center;
  margin-bottom: 12px;
}

.price-prefix {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero-big-price {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 6px 0;
}

.hero-big-price .currency {
  font-size: 1.8rem;
  vertical-align: super;
}

.hero-big-price .amount {
  font-size: 3.6rem;
}

.hero-big-price .cents {
  font-size: 1.8rem;
  vertical-align: super;
}

.installments-label {
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 20px;
}

.btn-checkout {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 16px 20px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  width: 100%;
}

.btn-checkout small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 3px;
}

.btn-checkout:hover {
  background: linear-gradient(180deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 25px rgba(5, 150, 105, 0.45);
}

.shipping-info {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-methods {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.cards-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.pay-tag {
  background-color: #e2e8f0;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--color-primary);
}

/* ==========================================================================
   9. GARANTIA BLINDADA
   ========================================================================== */
.guarantee-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  background-color: var(--color-bg-light);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.guarantee-seal {
  flex-shrink: 0;
}

.seal-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid #fef3c7;
}

.seal-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.seal-text {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.seal-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.guarantee-content h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.guarantee-content p {
  font-size: 0.96rem;
  color: var(--color-text-main);
  margin: 0;
}

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 70px 0;
  background-color: var(--color-bg-light);
}

.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.4rem;
  color: var(--color-action);
  font-weight: 800;
  flex-shrink: 0;
}

.accordion-content {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 22px 18px 22px;
}

.accordion-content p {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 50px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   COMPONENTES AUXILIARES & CRO
   ========================================================================== */
.swipe-hint-mobile {
  display: none;
  text-align: center;
  margin-bottom: 12px;
}

.swipe-hint-mobile span {
  display: inline-block;
  background: rgba(15, 23, 42, 0.07);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  animation: pulse-horizontal 2.2s infinite ease-in-out;
}

@keyframes pulse-horizontal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.stove-compatibility-hero {
  background-color: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 14px;
  text-align: left;
}

.spec-pill {
  display: inline-block;
  background-color: #f1f5f9;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #e2e8f0;
}

.offer-stove-alert {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #92400e;
  margin-bottom: 18px;
  text-align: left;
}

.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.g-step {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.86rem;
  color: var(--color-text-main);
  text-align: left;
}

/* WhatsApp Flutuante */
.whatsapp-float-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Sticky Mobile Bottom Bar */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  z-index: 999;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
  display: block;
  transform: translateY(0);
}

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

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.sticky-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  line-height: 1.1;
}

.btn-sticky {
  background: var(--color-action);
  color: #ffffff;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  flex-grow: 1;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.btn-sticky:hover {
  background: var(--color-action-hover);
}

/* Links Legais & Modais */
.footer-legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.secure-badge-box {
  background-color: #1e293b;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #334155;
}

.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.legal-modal-overlay.active {
  display: flex;
}

.legal-modal-box {
  background-color: #ffffff;
  color: var(--color-text-main);
  max-width: 650px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #64748b;
  line-height: 1;
  padding: 4px 8px;
  -webkit-tap-highlight-color: transparent;
}

.modal-body h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.modal-body p {
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVIDADE COMPLETA (MOBILE-FIRST & CRO)
   ========================================================================== */

/* Tablet & Telas Médias (<= 992px) */
@media (max-width: 992px) {
  .hero-section {
    padding: 30px 0 40px 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-content {
    display: contents;
  }

  .hero-badge-pill {
    order: 1;
    align-self: flex-start;
  }

  .hero-title {
    order: 2;
    font-size: 2.1rem;
  }

  .hero-subtitle {
    order: 3;
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .hero-media {
    order: 4;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 12px auto;
  }

  .hero-key-points {
    order: 5;
    margin-bottom: 24px;
  }

  .hero-cta-box {
    order: 6;
    padding: 22px;
  }

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

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

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

  .feature-macro-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

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

  .offer-section {
    padding: 60px 0;
  }

  .offer-card-body {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Tablets Pequenos & Mobile Paisagem (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .swipe-hint-mobile {
    display: block;
  }

  .comparison-section {
    padding: 50px 0;
  }

  .comparison-table-wrapper {
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }

  .comparison-table {
    min-width: 540px;
  }

  .comparison-table th, 
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.84rem;
  }

  /* Coluna de atributos fixa para swipe fácil */
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    background-color: #ffffff;
    z-index: 2;
    box-shadow: 3px 0 6px -2px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    max-width: 155px;
  }

  .comparison-table th:first-child {
    background-color: #f8fafc;
  }
}

/* Smartphones Padrão (<= 640px) */
@media (max-width: 640px) {
  /* Espaço inferior do body para o sticky bar não cobrir nada */
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  /* Barra de Anúncio no Topo */
  .top-announcement {
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .top-announcement p {
    font-size: 0.78rem;
  }

  /* Header */
  .site-header {
    padding: 8px 0;
  }

  .header-container {
    gap: 8px;
  }

  .logo-badge {
    font-size: 0.95rem;
    padding: 3px 8px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .header-rating {
    display: none;
  }

  .btn-header {
    padding: 7px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero-section {
    padding: 20px 0 32px 0;
  }

  .hero-title {
    font-size: 1.72rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .current-price {
    font-size: 1.85rem;
  }

  .hero-key-points {
    gap: 8px;
    margin-bottom: 18px;
  }

  .key-point {
    font-size: 0.88rem;
    gap: 8px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    font-size: 0.72rem;
  }

  /* Benefícios Rápidos 2x2 */
  .quick-benefits-bar {
    padding: 16px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefit-item {
    gap: 8px;
    padding: 10px 8px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
  }

  .b-icon {
    font-size: 1.35rem;
  }

  .b-text strong {
    font-size: 0.82rem;
  }

  .b-text span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  /* Seção PAS */
  .agitation-section {
    padding: 42px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .section-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .problems-grid {
    gap: 14px;
    margin-bottom: 24px;
  }

  .problem-card {
    padding: 18px 16px;
  }

  .problem-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .problem-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .solution-bridge-box {
    padding: 24px 16px;
  }

  .solution-bridge-box h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .solution-bridge-box p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* Itens Inclusos */
  .unboxing-section {
    padding: 44px 0;
  }

  .items-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .showcase-card {
    padding: 18px 16px;
  }

  .card-icon-title {
    font-size: 1.02rem;
  }

  .spec-pill {
    font-size: 0.72rem;
    padding: 2px 6px;
    margin-bottom: 8px;
  }

  .showcase-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .feature-macro-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 18px;
  }

  .feature-macro-card h3 {
    font-size: 1.25rem;
  }

  /* Depoimentos */
  .reviews-section {
    padding: 44px 0;
  }

  .reviews-grid {
    gap: 16px;
  }

  .review-card {
    padding: 16px;
  }

  .review-img-box {
    height: 190px;
    margin-bottom: 12px;
  }

  .review-quote {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Oferta e Checkout */
  .offer-section {
    padding: 44px 0;
  }

  .offer-card-header {
    padding: 22px 16px;
  }

  .urgency-counter {
    font-size: 0.76rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .offer-card-header h2 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .offer-card-header p {
    font-size: 0.85rem;
  }

  .offer-card-body {
    padding: 20px 16px;
    gap: 22px;
  }

  .stack-list h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .stack-list ul {
    gap: 10px;
    margin-bottom: 16px;
  }

  .stack-list li {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .total-value-anchor {
    font-size: 0.92rem;
    padding-top: 10px;
  }

  .offer-pricing-box {
    padding: 20px 16px;
  }

  .hero-big-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 4px 0;
  }

  .hero-big-price .currency {
    font-size: 1.4rem;
    vertical-align: baseline;
  }

  .hero-big-price .amount {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero-big-price .cents {
    font-size: 1.4rem;
    vertical-align: baseline;
  }

  .installments-label {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .offer-stove-alert {
    padding: 8px 10px;
    font-size: 0.78rem;
    margin-bottom: 14px;
  }

  .btn-checkout {
    padding: 14px 16px;
    font-size: 1.05rem;
    min-height: 52px;
  }

  .btn-checkout small {
    font-size: 0.72rem;
  }

  .shipping-info {
    font-size: 0.75rem;
  }

  .cards-icons {
    flex-wrap: wrap;
  }

  /* Garantia */
  .guarantee-section {
    padding: 40px 0;
  }

  .guarantee-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 18px;
  }

  .seal-circle {
    width: 88px;
    height: 88px;
  }

  .seal-number {
    font-size: 1.8rem;
  }

  .seal-text {
    font-size: 0.75rem;
  }

  .seal-sub {
    font-size: 0.6rem;
  }

  .guarantee-content h2 {
    font-size: 1.28rem;
    margin-bottom: 8px;
  }

  .guarantee-content p {
    font-size: 0.88rem;
  }

  .guarantee-steps {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .g-step {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* FAQ */
  .faq-section {
    padding: 42px 0;
  }

  .accordion-header {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
  }

  .accordion-icon {
    font-size: 1.2rem;
  }

  .accordion-content {
    padding: 0 16px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 16px 14px 16px;
  }

  .accordion-content p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  /* Footer */
  .site-footer {
    padding: 36px 0 20px 0;
  }

  .footer-grid {
    gap: 22px;
    margin-bottom: 24px;
  }

  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .footer-col p {
    font-size: 0.82rem;
    margin-bottom: 6px;
  }

  .footer-legal-links a {
    font-size: 0.82rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
    padding-top: 14px;
  }

  /* WhatsApp Flutuante Mobile */
  .whatsapp-float-container {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 1001;
  }

  .whatsapp-float-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Modais */
  .legal-modal-overlay {
    padding: 12px;
  }

  .legal-modal-box {
    padding: 24px 18px;
    border-radius: var(--radius-md);
    max-height: 85vh;
  }

  .modal-body h3 {
    font-size: 1.18rem;
  }

  .modal-body p {
    font-size: 0.86rem;
  }
}

/* Smartphones Compactos (<= 480px) */
@media (max-width: 480px) {
  .logo-symbol-pan {
    width: 29px;
    height: 22px;
  }

  .brand-text {
    font-size: 1.22rem;
  }

  .hero-status-pill {
    font-size: 0.76rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 1.55rem;
    letter-spacing: -0.3px;
    line-height: 1.25;
  }

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

  .media-card-wrapper {
    padding: 8px;
  }

  .floating-badge {
    padding: 4px 8px;
    border-radius: 6px;
  }

  .badge-mounted {
    top: 10px;
    left: 10px;
  }

  .badge-mounted strong {
    font-size: 0.7rem;
  }

  .badge-mounted small {
    font-size: 0.6rem;
  }

  .badge-discount {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
  }

  .badge-discount strong {
    font-size: 0.88rem;
  }

  .badge-discount small {
    font-size: 0.58rem;
  }

  .btn-primary {
    padding: 14px 16px;
    font-size: 1.02rem;
    min-height: 52px;
  }

  .btn-primary small {
    font-size: 0.72rem;
  }

  .trust-microcopy {
    justify-content: center;
    gap: 12px;
  }

  .sticky-price {
    font-size: 1.12rem;
  }

  .btn-sticky {
    padding: 10px 14px;
    font-size: 0.86rem;
  }
}

/* Telas Ultra-Estreitas (<= 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .hero-big-price .amount {
    font-size: 2.3rem;
  }

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

  .logo-symbol-pan {
    width: 25px;
    height: 19px;
  }

  .brand-text {
    font-size: 1.08rem;
  }
}

