/* ==========================================================================
   BIBLIOTECA DE EXERCÍCIOS FUNCIONAIS V1 — STYLESHEET
   Mobile First | Low Ticket High Conversion Landing Page
   ========================================================================== */

/* --- DESIGN TOKENS --- */
:root {
  /* Color Palette (Extracted & refined from brand identity) */
  --color-bg-dark: #0a0c0f;
  --color-bg-alt: #11141a;
  --color-surface: #171b22;
  --color-surface-hover: #1f242e;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-bright: rgba(255, 255, 255, 0.16);

  --color-text-main: #ffffff;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;

  --color-primary: #e61c38;
  --color-primary-hover: #ff2a47;
  --color-accent-green: #00d64f;
  --color-accent-green-hover: #00ea57;
  --color-highlight: #ffb800;

  --badge-bg: rgba(230, 28, 56, 0.12);
  --badge-text: #ff4d66;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

  /* Elevation & Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-primary: 0 0 32px rgba(230, 28, 56, 0.35);
  --shadow-glow-green: 0 0 32px rgba(0, 214, 79, 0.35);

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

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* --- TYPOGRAPHY UTILITIES --- */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-green { color: var(--color-accent-green); }
.text-muted { color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--badge-bg);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 28, 56, 0.25);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}

/* --- BUTTONS & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  padding: 1rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
  user-select: none;
  touch-action: manipulation;
}

.btn-primary {
  background-color: var(--color-accent-green);
  color: #02200b;
  box-shadow: 0 4px 20px rgba(0, 214, 79, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 214, 79, 0.55);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(230, 28, 56, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 28, 56, 0.55);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn-pulse {
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(0, 214, 79, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(0, 214, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 214, 79, 0); }
}

.microcopy {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  font-weight: 500;
}

/* ==========================================================================
   DOBRA 01 — HERO
   ========================================================================== */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at 50% 15%, rgba(230, 28, 56, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(0, 214, 79, 0.08) 0%, transparent 50%),
              var(--color-bg-dark);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, rgba(230, 28, 56, 0.18) 0%, rgba(230, 28, 56, 0.06) 100%);
  border: 1px solid rgba(230, 28, 56, 0.35);
  color: #ff3b56;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 16px rgba(230, 28, 56, 0.15);
  text-transform: uppercase;
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2a4b;
  box-shadow: 0 0 10px #ff2a4b;
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 5.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-headline-highlight {
  background: linear-gradient(135deg, #ff2a4b 0%, #ff6b81 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  filter: drop-shadow(0 0 20px rgba(255, 42, 75, 0.3));
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #d1d5db;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.sub-highlight {
  color: #ffffff;
  font-weight: 700;
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-main);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.benefit-item svg {
  color: var(--color-accent-green);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
  border: 1px solid var(--color-border-bright);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   DOBRA 02 — IDENTIFICAÇÃO / REPERTÓRIO
   ========================================================================== */
.ident-headline {
  margin-bottom: 2.25rem;
}

.ident-text-box {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  align-items: center;
}

.ident-text-box {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ident-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--color-text-main);
  line-height: 1.6;
}

.ident-lead-highlight {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  letter-spacing: 0.04em;
}

/* Three Individual Pill Badges */
.ident-bullets-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
}

.ident-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.06) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 12px rgba(16, 185, 129, 0.12);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ident-pill-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-green);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.ident-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-green);
  color: #061e12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* High-Impact Repetition Banner */
.ident-highlight-banner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  background: linear-gradient(135deg, rgba(230, 28, 56, 0.18) 0%, rgba(230, 28, 56, 0.06) 100%);
  border: 1px solid rgba(230, 28, 56, 0.45);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(230, 28, 56, 0.2), inset 0 0 15px rgba(230, 28, 56, 0.1);
  margin-top: 0.25rem;
}

.ident-highlight-label {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ident-highlight-tag {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(230, 28, 56, 0.6);
  background: var(--color-primary);
  padding: 0.2rem 0.85rem;
  border-radius: var(--radius-sm);
}

.ident-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.ident-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .ident-card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.ident-card {
  background: #000000;
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ident-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.ident-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
  display: block;
}

.ident-highlight-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  max-width: 840px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-md);
}

.ident-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .ident-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.85rem 0.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

.step-txt {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   DOBRA 03 — O PRODUTO
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%), var(--color-surface);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(230, 28, 56, 0.15);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 28, 56, 0.12);
  border: 1px solid rgba(230, 28, 56, 0.3);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(230, 28, 56, 0.1);
  border: 1px solid rgba(230, 28, 56, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-card-badge.green {
  color: var(--color-accent-green);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.product-card-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   DOBRA 04 — DEMONSTRAÇÃO DOS EXERCÍCIOS
   ========================================================================== */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .demo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.demo-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}

.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 28, 56, 0.55);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 28, 56, 0.2);
}

.demo-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000000;
  overflow: hidden;
}

.demo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
  display: block;
  transition: transform 0.4s ease;
}

.demo-card:hover .demo-thumb img {
  transform: scale(1.05);
}

/* Dark Scrim Gradient Overlay */
.demo-thumb-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 16, 22, 0.85) 0%, rgba(12, 16, 22, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Glassmorphism HD Video Badge */
.demo-badge-hd {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Glassmorphism Play Button Overlay */
.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 28, 56, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(230, 28, 56, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  padding-left: 3px;
}

.demo-card:hover .demo-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-primary);
  box-shadow: 0 0 30px rgba(230, 28, 56, 0.9), 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Card Body Footer */
.demo-body {
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(12, 16, 22, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-grow: 1;
}

.demo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(5, 150, 105, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.demo-title {
  font-size: 0.9375rem;
  color: var(--color-text-main);
  line-height: 1.35;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.demo-title strong {
  color: #ffffff;
  font-weight: 700;
}

.demo-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.1rem 0.55rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   DOBRA 05 — COMO USAR
   ========================================================================== */
.use-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.use-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.use-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 28, 56, 0.55);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(230, 28, 56, 0.18);
}

.use-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.use-badge {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(230, 28, 56, 0.12);
  border: 1px solid rgba(230, 28, 56, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.use-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 28, 56, 0.18) 0%, rgba(230, 28, 56, 0.05) 100%);
  border: 1px solid rgba(230, 28, 56, 0.35);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(230, 28, 56, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.use-card:hover .use-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(230, 28, 56, 0.25);
  color: #ffffff;
}

.use-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.use-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.use-banner {
  background: linear-gradient(135deg, #e61c38 0%, #a00e23 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-top: 2.5rem;
  box-shadow: 0 10px 30px rgba(230, 28, 56, 0.35), 0 0 20px rgba(230, 28, 56, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   DOBRA 06 — ALÉM DOS EXERCÍCIOS
   ========================================================================== */
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

@media (min-width: 768px) {
  .beyond-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.beyond-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}

.beyond-card:hover {
  transform: translateY(-7px);
  border-color: rgba(230, 28, 56, 0.6);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 28, 56, 0.22);
}

.beyond-img-wrapper {
  position: relative;
  background: radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.12) 0%, rgba(12, 16, 22, 0.98) 75%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1.25rem;
  min-height: 250px;
}

/* Pedestal Floor Glow for 3D Mockup */
.beyond-stage-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(230, 28, 56, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.beyond-card:hover .beyond-stage-glow {
  opacity: 1;
  transform: translateX(-50%) scale(1.15);
}

.beyond-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.beyond-card:hover .beyond-img-wrapper img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.65));
}

.beyond-content {
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: rgba(12, 16, 22, 0.98);
}

.beyond-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(230, 28, 56, 0.12);
  border: 1px solid rgba(230, 28, 56, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  box-shadow: 0 0 10px rgba(230, 28, 56, 0.15);
}

.beyond-tag svg {
  color: var(--color-primary);
}

.beyond-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.beyond-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   DOBRA 07 — PROVA SOCIAL (CARROSSEL INTERATIVO)
   ========================================================================== */
.testi-carousel-wrapper {
  position: relative;
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 0 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .testi-carousel-wrapper {
    padding: 0 2.5rem;
  }
}

.testi-carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.testi-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testi-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.testi-img-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-bright);
}

.testi-img-card img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* Nav Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border-bright);
  color: var(--color-text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow-primary);
  outline: none;
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

/* Pagination Dots */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border-bright);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-dots .dot:hover {
  background: var(--color-text-muted);
}

.carousel-dots .dot.active {
  background: var(--color-primary);
  width: 26px;
  border-radius: 13px;
  box-shadow: var(--shadow-glow-primary);
}


/* ==========================================================================
   DOBRA 08 — PARA QUEM É
   ========================================================================== */
.audience-box {
  background: transparent;
  max-width: 900px;
  margin: 2.25rem auto 0;
}

.bullet-grid {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.bullet-card-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.45;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.bullet-card-item:hover {
  transform: translateX(6px);
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(16, 185, 129, 0.18);
}

.audience-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22) 0%, rgba(5, 150, 105, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

.audience-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(230, 28, 56, 0.18) 0%, rgba(230, 28, 56, 0.05) 100%);
  border: 1px solid rgba(230, 28, 56, 0.45);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(230, 28, 56, 0.2), inset 0 0 15px rgba(230, 28, 56, 0.1);
}

.audience-footer-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-footer-highlight {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(230, 28, 56, 0.6);
  background: var(--color-primary);
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   DOBRA 09 — OFERTA (600+ vs 1000+)
   ========================================================================== */
/* ==========================================================================
   DOBRA 09 — OFERTA (600+ vs 1000+)
   ========================================================================== */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 20, 28, 0.96) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.pricing-card-featured {
  background: linear-gradient(160deg, rgba(230, 28, 56, 0.14) 0%, rgba(15, 20, 28, 0.98) 60%);
  border: 2px solid var(--color-primary);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(230, 28, 56, 0.28);
}

.pricing-card-featured:hover {
  transform: translateY(-8px);
  border-color: #ff2a4b;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(230, 28, 56, 0.4);
}

/* Featured Header Ribbon */
.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: linear-gradient(135deg, #e61c38 0%, #b80f27 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(230, 28, 56, 0.6);
  white-space: nowrap;
}

/* Offer Mockup Stage */
.pricing-img-wrapper {
  position: relative;
  background: radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.1) 0%, rgba(12, 16, 22, 0.98) 80%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.pricing-img-wrapper.featured-stage {
  background: radial-gradient(circle at 50% 55%, rgba(230, 28, 56, 0.22) 0%, rgba(12, 16, 22, 0.98) 80%);
}

.pricing-stage-glow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(230, 28, 56, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.pricing-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.pricing-card:hover .pricing-img-wrapper img {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card-body {
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.45;
  min-height: 38px;
}

.pricing-price-box {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-right: 0.15rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pricing-period {
  font-size: 0.8125rem;
  color: var(--color-accent-green);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text-main);
  line-height: 1.35;
}

.pricing-feature-item svg {
  color: var(--color-accent-green);
  flex-shrink: 0;
}

.pricing-feature-item.highlight-item {
  color: #ffffff;
  font-weight: 700;
}

.pricing-feature-item.highlight-item svg {
  color: var(--color-accent-green);
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

.pricing-feature-item.dim {
  color: var(--color-text-dim);
}

.pricing-feature-item.dim svg {
  color: #ef4444;
}

/* ==========================================================================
   DOBRA 10 — COMPARAÇÃO
   ========================================================================== */
.table-wrapper {
  max-width: 820px;
  margin: 2.25rem auto 0;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 20, 28, 0.98) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-bright);
}

.compare-table th,
.compare-table td {
  padding: 1.15rem 1.35rem;
  text-align: center;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table th {
  background: rgba(12, 16, 22, 0.95);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.compare-table th.th-highlight {
  background: linear-gradient(180deg, rgba(230, 28, 56, 0.28) 0%, rgba(230, 28, 56, 0.12) 100%);
  color: #ffffff;
  position: relative;
  border-left: 1px solid rgba(230, 28, 56, 0.4);
  border-right: 1px solid rgba(230, 28, 56, 0.4);
}

.th-pill-badge {
  display: block;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: var(--color-primary);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin: 0 auto 0.35rem;
  width: max-content;
  box-shadow: 0 2px 8px rgba(230, 28, 56, 0.5);
}

.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
  font-weight: 700;
  color: #ffffff;
}

.compare-table td.td-highlight {
  background: rgba(230, 28, 56, 0.06);
  border-left: 1px solid rgba(230, 28, 56, 0.25);
  border-right: 1px solid rgba(230, 28, 56, 0.25);
}

.compare-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

.compare-table tr:hover td.td-highlight {
  background-color: rgba(230, 28, 56, 0.1);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* Custom Check & Cross Badge Icons */
.compare-badge-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: var(--color-accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.compare-badge-cross {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(185, 28, 28, 0.08) 100%);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.compare-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin: 2.25rem auto 0;
}

@media (min-width: 640px) {
  .compare-decision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.compare-decision-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.compare-decision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.compare-decision-card.featured-decision {
  background: linear-gradient(145deg, rgba(230, 28, 56, 0.14) 0%, rgba(15, 20, 28, 0.98) 100%);
  border: 1px solid rgba(230, 28, 56, 0.5);
  box-shadow: 0 10px 25px rgba(230, 28, 56, 0.2);
}

.compare-decision-card.featured-decision:hover {
  border-color: var(--color-primary);
  box-shadow: 0 14px 30px rgba(230, 28, 56, 0.35);
}

.compare-decision-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.compare-decision-card.featured-decision h4 {
  color: #ffffff;
}

.compare-decision-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   DOBRA 11 — GARANTIA + FAQ
   ========================================================================== */
.guarantee-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(230, 28, 56, 0.04) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  max-width: 800px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 20px rgba(16, 185, 129, 0.1);
}

@media (min-width: 640px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
  }
}

.guarantee-badge {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
  border: 2px solid var(--color-accent-green);
  color: var(--color-accent-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.guarantee-badge-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-accent-green);
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.guarantee-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-button {
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   SEÇÃO MENTORES DO PROGRAMA
   ========================================================================== */
.mentors-block {
  max-width: 860px;
  margin: 0 auto 5rem;
  padding: 0 0.5rem;
}

.mentors-photo-wrap {
  position: relative;
  max-width: 520px;
  margin: 1.5rem auto 2.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.08) 0%, rgba(12, 16, 22, 0.98) 75%);
  border: 1px solid var(--color-border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.mentors-stage-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(230, 28, 56, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.mentors-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.mentors-photo-wrap:hover img {
  transform: scale(1.03);
}

.mentors-headline {
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.mentors-intro {
  font-size: 1.05rem;
  color: var(--color-text-main);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.mentors-grid {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.mentor-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 20, 28, 0.96) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 28, 56, 0.55);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(230, 28, 56, 0.18);
}

.mentor-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 28, 56, 0.2) 0%, rgba(230, 28, 56, 0.05) 100%);
  border: 1px solid rgba(230, 28, 56, 0.35);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(230, 28, 56, 0.2);
  transition: transform 0.3s ease;
}

.mentor-card:hover .mentor-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(230, 28, 56, 0.25);
  color: #ffffff;
}

.mentor-body {
  flex: 1;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.mentor-bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

}

/* ==========================================================================
   DOBRA 12 — CTA FINAL & FOOTER
   ========================================================================== */
/* ==========================================================================
   DOBRA 12 — CTA FINAL & FOOTER
   ========================================================================== */
.final-cta-box {
  background: radial-gradient(circle at 50% 35%, rgba(230, 28, 56, 0.22) 0%, rgba(15, 20, 28, 0.98) 75%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-lg);
  padding: 3.25rem 1.75rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(230, 28, 56, 0.15);
  position: relative;
  overflow: hidden;
}

.final-offers-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.final-offer-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 20, 28, 0.95) 100%);
  border: 1px solid var(--color-border-bright);
  padding: 0.95rem 1.65rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-main);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.final-offer-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.final-offer-chip.featured-chip {
  background: linear-gradient(145deg, rgba(230, 28, 56, 0.16) 0%, rgba(15, 20, 28, 0.98) 100%);
  border: 1px solid rgba(230, 28, 56, 0.55);
  box-shadow: 0 6px 20px rgba(230, 28, 56, 0.2);
}

.final-offer-chip.featured-chip:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 28px rgba(230, 28, 56, 0.35);
}

.chip-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: var(--color-primary);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(230, 28, 56, 0.5);
}

.chip-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.chip-price {
  color: var(--color-accent-green);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
}

.final-btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 2.25rem;
  font-size: 1.05rem;
  box-shadow: 0 0 35px rgba(230, 28, 56, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
}

.final-btn-glow svg {
  transition: transform 0.3s ease;
}

.final-btn-glow:hover svg {
  transform: translateX(4px);
}

.microcopy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 0.85rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.microcopy-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.microcopy-item svg {
  color: var(--color-accent-green);
}

.microcopy-sep {
  color: var(--color-border-bright);
}

footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}
