/* ============================================================
   TEAM VILELA — CSS PRINCIPAL
   Estilo: Premium Fitness | Vermelho · Preto · Branco
   ============================================================ */

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

:root {
  --red:       #e81c2e;
  --red-dark:  #c0111f;
  --red-light: #ff3347;
  --red-glow:  rgba(232, 28, 46, 0.35);
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #181818;
  --dark3:     #1f1f1f;
  --dark4:     #252525;
  --dark5:     #2e2e2e;
  --white:     #ffffff;
  --off-white: #f5f5f5;
  --gray:      #a0a0a0;
  --gray-light:#d0d0d0;
  --green:     #22c55e;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-red:0 4px 30px rgba(232,28,46,0.25);
  --transition:0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
.highlight { color: var(--red); }
.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header p {
  color: var(--gray);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }
.section-dark { background: var(--dark); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font-main);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.logo-team {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-vilela {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 0.04em;
}
.logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 3px;
  margin-left: 4px;
}
.footer-logo .logo-tag { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
}
.btn-outline-nav {
  background: transparent;
  color: var(--gray-light);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-nav:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-primary-nav {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-primary-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 40%, rgba(232,28,46,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(232,28,46,0.08) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.7) 100%);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,28,46,0.15);
  border: 1px solid rgba(232,28,46,0.4);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
#hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-light);
  background: rgba(255,255,255,0.06);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-tags span i { color: var(--red); }
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-hero-primary {
  background: var(--red);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 40px var(--red-glow);
  transition: all 0.3s;
  font-family: var(--font-head);
}
.btn-hero-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(232,28,46,0.45);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  font-family: var(--font-head);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span:not(.stat-label):not(.stat-number) {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--gray);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  transition: all var(--transition);
}
.hero-scroll a:hover { border-color: var(--red); color: var(--red); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
.hide-mobile { display: inline; }

/* ============================================================
   SOBRE
   ============================================================ */
.section-sobre { background: var(--dark2); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-text .section-tag { margin-bottom: 1.2rem; }
.sobre-text h2 { margin-bottom: 1.2rem; }
.sobre-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.sobre-pillars {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
}
.pillar:hover {
  border-color: rgba(232,28,46,0.3);
  background: rgba(232,28,46,0.06);
}
.pillar i {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,28,46,0.15);
  border-radius: 10px;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 0.95rem; color: var(--white); }
.pillar span   { font-size: 0.85rem; color: var(--gray); }

/* App Mockup */
.sobre-visual { position: relative; }
.sobre-card-main {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visual-mockup { padding: 0; }
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark4);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }
.mockup-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}
.mockup-body { padding: 24px; }
.mock-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mock-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,28,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.mock-name { font-weight: 700; font-size: 0.95rem; }
.mock-phase { font-size: 0.78rem; color: var(--red); font-weight: 600; }
.mock-streak {
  margin-left: auto;
  background: rgba(232,28,46,0.15);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232,28,46,0.3);
}
.mock-progress-section { margin-bottom: 20px; }
.mock-prog-title { font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; font-weight: 500; }
.mock-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red-light));
  border-radius: 999px;
  animation: fillBar 2s ease-in-out forwards;
}
@keyframes fillBar {
  from { width: 0; }
}
.mock-prog-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.mock-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mock-metric i { color: var(--red); font-size: 0.9rem; }
.mval { font-size: 1rem; font-weight: 800; color: var(--white); }
.mlabel { font-size: 0.7rem; color: var(--gray); }
.mock-next {
  background: rgba(232,28,46,0.08);
  border: 1px solid rgba(232,28,46,0.2);
  border-radius: 10px;
  padding: 12px 16px;
}
.mock-next-label { font-size: 0.72rem; color: var(--gray); margin-bottom: 4px; }
.mock-next-val { font-size: 0.9rem; font-weight: 700; color: var(--red); }
.mock-next-val i { margin-right: 6px; }

/* Floating badges */
.sobre-badge-floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  animation: floatBadge 3s ease-in-out infinite;
}

/* Badges inline abaixo do mockup */
.sobre-badges-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.sobre-badge-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
  flex: 1;
  transition: all var(--transition);
}
.sobre-badge-inline:hover {
  border-color: rgba(232,28,46,0.3);
  background: rgba(232,28,46,0.06);
}
.sobre-badge-inline i {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,28,46,0.15);
  border-radius: 10px;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.sobre-badge-inline strong { display: block; font-size: 0.85rem; color: var(--white); }
.sobre-badge-inline span   { font-size: 0.75rem; color: var(--gray); }
.sobre-badge-floating i {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,28,46,0.15);
  border-radius: 10px;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.sobre-badge-floating strong { display: block; font-size: 0.85rem; color: var(--white); }
.sobre-badge-floating span   { font-size: 0.75rem; color: var(--gray); }
.badge-left  { bottom: -24px; left: 20px; animation-delay: 0s; }
.badge-right { top: -24px; right: 20px; animation-delay: 1.5s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   PARA QUEM
   ============================================================ */
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pq-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.pq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,28,46,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,28,46,0.15);
}
.pq-card.featured {
  background: linear-gradient(145deg, rgba(232,28,46,0.12), rgba(10,10,10,0.8));
  border-color: rgba(232,28,46,0.4);
}
.pq-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pq-icon {
  width: 60px; height: 60px;
  background: rgba(232,28,46,0.15);
  border: 1px solid rgba(232,28,46,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.pq-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.pq-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pq-card ul { display: flex; flex-direction: column; gap: 8px; }
.pq-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-light);
}
.pq-card li i { color: var(--red); font-size: 0.75rem; }

/* ============================================================
   EXPERIÊNCIAS
   ============================================================ */
.section-experiencias { background: var(--dark2); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.exp-card {
  position: relative;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.exp-card.premium-exp {
  border-color: rgba(232,28,46,0.4);
  box-shadow: 0 8px 40px rgba(232,28,46,0.1);
}
.exp-badge-top {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  z-index: 2;
}
.exp-header {
  padding: 40px 36px 32px;
  position: relative;
}
.exp-header.essencial {
  background: linear-gradient(135deg, rgba(30,30,30,1) 0%, rgba(20,20,20,1) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.exp-header.premium {
  background: linear-gradient(135deg, rgba(232,28,46,0.18) 0%, rgba(20,20,20,1) 100%);
  border-bottom: 1px solid rgba(232,28,46,0.25);
}
.exp-icon {
  width: 56px; height: 56px;
  background: rgba(232,28,46,0.15);
  border: 1px solid rgba(232,28,46,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.exp-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.exp-header h3 { font-size: 1.6rem; margin-bottom: 6px; }
.exp-header p  { font-size: 0.9rem; color: var(--gray); }
.exp-body { padding: 32px 36px; }
.exp-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.exp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-light);
}
.exp-feature i { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }
.btn-exp-essencial, .btn-exp-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-head);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-exp-essencial {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-exp-essencial:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-exp-premium {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-exp-premium:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--red-glow);
}

/* ============================================================
   MÉTODO
   ============================================================ */
.metodo-timeline { margin-bottom: 3rem; }
.timeline-line { display: none; }
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  z-index: 0;
}
.tstep {
  position: relative;
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  z-index: 1;
}
.tstep:hover {
  background: rgba(232,28,46,0.08);
  border-color: rgba(232,28,46,0.3);
  transform: translateY(-4px);
}
.tstep-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--dark);
}
.tstep-icon {
  width: 52px; height: 52px;
  background: rgba(232,28,46,0.15);
  border: 1px solid rgba(232,28,46,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  margin: 0 auto 14px;
}
.tstep h4 { font-size: 0.95rem; margin-bottom: 8px; }
.tstep p  { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.metodo-cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(232,28,46,0.12), rgba(20,20,20,0.9));
  border: 1px solid rgba(232,28,46,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.metodo-cta-inner i.fa-infinity {
  font-size: 2.5rem;
  color: var(--red);
  flex-shrink: 0;
}
.metodo-cta-inner strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-head);
  margin-bottom: 4px;
}
.metodo-cta-inner span {
  font-size: 0.88rem;
  color: var(--gray);
}
.metodo-cta-inner .btn { margin-left: auto; white-space: nowrap; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.section-diferenciais { background: var(--black); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.dif-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.dif-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.dif-card:hover { transform: translateY(-6px); border-color: rgba(232,28,46,0.3); }
.dif-card:hover::before { transform: scaleX(1); }
.dif-card.featured-dif {
  background: linear-gradient(145deg, rgba(232,28,46,0.12), rgba(20,20,20,1));
  border-color: rgba(232,28,46,0.35);
}
.dif-card.featured-dif::before { transform: scaleX(1); }
.dif-icon {
  width: 60px; height: 60px;
  background: rgba(232,28,46,0.12);
  border: 1px solid rgba(232,28,46,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.dif-card h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.dif-card p  { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.dep-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,28,46,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.dep-card.featured-dep {
  background: linear-gradient(145deg, rgba(232,28,46,0.1), rgba(20,20,20,0.9));
  border-color: rgba(232,28,46,0.35);
}

/* Foto de fundo do card */
.dep-photo-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.dep-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.dep-card:hover .dep-photo {
  transform: scale(1.05);
}
.dep-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(24,24,24,0.85) 100%
  );
}

/* Corpo do card (conteúdo abaixo da foto) */
.dep-card .dep-stars {
  padding: 20px 24px 0;
}
.dep-card blockquote {
  padding: 12px 24px 0;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.dep-card .dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 22px;
  margin-top: auto;
}

/* Avatar circular com foto real */
.dep-avatar-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(232,28,46,0.2);
}
.dep-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.dep-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
blockquote {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,28,46,0.15);
  border: 2px solid rgba(232,28,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dep-author strong { display: block; font-size: 0.95rem; }
.dep-author span   { font-size: 0.78rem; color: var(--gray); }
.dep-result {
  margin-left: auto;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   PLANOS
   ============================================================ */
.section-planos { background: var(--dark2); }
.plan-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 3rem;
}
.toggle-label {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-weight: 500;
}
.toggle-save {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
}
.toggle-switch { position: relative; }
.toggle-switch input { display: none; }
.toggle-switch label {
  display: block;
  width: 52px; height: 28px;
  background: var(--dark5);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.toggle-switch label::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  top: 3px; left: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: all var(--transition);
}
.toggle-switch input:checked + label { background: var(--red); border-color: var(--red); }
.toggle-switch input:checked + label::after { transform: translateX(24px); }

.planos-section { margin-bottom: 3rem; }
.planos-section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.planos-section-title i { color: var(--red); }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.planos-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Plano Anual */
.plan-anual {
  background: linear-gradient(145deg, rgba(232,28,46,0.08), rgba(20,20,20,0.98)) !important;
  border-color: rgba(232,28,46,0.3) !important;
  position: relative;
}
.plan-badge-anual {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c0111f, #e81c2e);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232,28,46,0.4);
}
.btn-plan-anual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232,28,46,0.3);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-plan-anual:hover {
  background: linear-gradient(135deg, #a00e1a, var(--red-dark));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,28,46,0.45);
}

/* Avatar feminino */
.dep-avatar.female {
  background: rgba(232,28,46,0.15);
  border-color: rgba(232,28,46,0.4);
  color: var(--red);
}
.plan-card {
  position: relative;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.plan-card.recommended {
  background: linear-gradient(145deg, rgba(232,28,46,0.12), rgba(20,20,20,0.95));
  border-color: rgba(232,28,46,0.45);
  transform: scale(1.03);
  box-shadow: 0 8px 40px var(--red-glow);
}
.plan-card.recommended:hover {
  transform: scale(1.03) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-currency { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.plan-value    { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; font-family: var(--font-head); }
.plan-period   { font-size: 0.85rem; color: var(--gray); }
/* Parcelamento nos planos */
.plan-parcel,
.prem-plan-parcel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.plan-parcel::before,
.prem-plan-parcel::before {
  content: '\f09d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
}

.plan-equiv    { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.plan-desc     { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 20px; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-light);
}
.plan-features li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-plan:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn-plan-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-plan-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--red-glow);
}

/* Comparativo */
.comparativo {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 2rem;
}
.comp-header { text-align: center; margin-bottom: 2rem; }
.comp-header h3 { font-size: 1.5rem; margin-bottom: 8px; }
.comp-header p { color: var(--gray); font-size: 0.92rem; }
.comp-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comp-table th, .comp-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comp-table th:first-child,
.comp-table td:first-child {
  text-align: left;
  color: var(--gray-light);
}
.comp-table thead tr {
  background: rgba(255,255,255,0.04);
}
.comp-table thead th {
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-head);
}
.comp-table .col-ess { color: var(--gray-light); }
.comp-table .col-pre { color: var(--red); }
.comp-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.green { color: var(--green) !important; }
.red-x { color: var(--red) !important; }
.comp-partial {
  display: inline-block;
  font-size: 0.78rem;
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 3px 10px;
  border-radius: 999px;
}
.comp-full {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 3px 10px;
  border-radius: 999px;
}
.fa-times { color: rgba(255,255,255,0.2) !important; }
.comp-cta { text-align: center; }
.comp-cta .btn { font-size: 1rem; padding: 16px 36px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,28,46,0.12) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,28,46,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(232,28,46,0); }
}
#cta-final h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}
#cta-final p {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}
.cta-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  min-width: 280px;
  max-width: 360px;
  flex: 1;
  transition: all var(--transition);
}
.cta-card:hover { transform: translateY(-4px); }
.cta-card.featured-cta {
  border-color: rgba(232,28,46,0.45);
  background: linear-gradient(145deg, rgba(232,28,46,0.12), rgba(20,20,20,0.95));
  box-shadow: 0 8px 40px var(--red-glow);
}
.cta-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 999px;
}
.cta-card i {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}
.cta-card h4 { font-size: 1.3rem; margin-bottom: 6px; }
.cta-card p  { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.5rem; }
.btn-cta-ess {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.18);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-cta-ess:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-cta-pre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-head);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-cta-pre:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--red-glow);
}
.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}
.cta-trust span i { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 1rem 0 1.5rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-links h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--red); }
.footer-contact h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all var(--transition);
}
.footer-wa:hover {
  background: #1eb558;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.footer-note {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-light);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 16px;
  transition: all var(--transition);
}
.footer-insta i { color: #e1306c; }
.footer-insta:hover {
  background: rgba(225,48,108,0.12);
  border-color: rgba(225,48,108,0.3);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner span {
  font-size: 0.82rem;
  color: var(--gray);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--red); }

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  width: 100%;
  background: var(--red);
}

/* ============================================================
   SECTION DIVIDER DECORATION
   ============================================================ */
.section-sobre::before,
.section-metodo::before,
.section-planos::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,28,46,0.3), transparent);
}

/* ============================================================
   ENHANCED EXPERIENCE CARDS hover glow
   ============================================================ */
.exp-card.premium-exp:hover {
  box-shadow: 0 24px 60px rgba(232,28,46,0.2), 0 0 0 1px rgba(232,28,46,0.3);
}

/* ============================================================
   GLOWING BORDER ANIMATION on featured elements
   ============================================================ */
@keyframes glowBorder {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,28,46,0); }
  50%      { box-shadow: 0 0 24px 4px rgba(232,28,46,0.25); }
}
.plan-card.recommended {
  animation: glowBorder 3s ease-in-out infinite;
}

/* ============================================================
   RED LINE accent on section tags
   ============================================================ */
.section-header .section-tag::before {
  display: none;
}

/* ============================================================
   GRID BACKGROUND PATTERN in hero
   ============================================================ */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}
.hero-content { z-index: 3 !important; }
.hero-scroll   { z-index: 3 !important; }

/* Quote icon — posicionado dentro do padding do card */
.dep-card blockquote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: rgba(232,28,46,0.18);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 4px;
  display: inline;
}

/* ============================================================
   PLAN CARDS — smooth transition for toggle
   ============================================================ */
.plan-card {
  transition: all 0.4s ease;
}

/* ============================================================
   COMPARATIVO TABLE — alternating row colors
   ============================================================ */
.comp-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* ============================================================
   LOGO red line decoration
   ============================================================ */
.logo {
  position: relative;
}
.logo::after {
  display: none;
}

/* ============================================================
   ENHANCED DIF GRID for 5 items
   ============================================================ */
@media (min-width: 1101px) {
  .dif-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .dif-grid .dif-card:last-child {
    grid-column: auto;
    max-width: none;
  }
}

/* ============================================================
   SPECIAL HIGHLIGHT BOX on method section
   ============================================================ */
.metodo-highlight {
  text-align: center;
  margin-bottom: 3rem;
  padding: 20px;
  background: rgba(232,28,46,0.05);
  border: 1px solid rgba(232,28,46,0.15);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  color: var(--gray-light);
}

/* ============================================================
   RESPONSIVE EXTRAS
   ============================================================ */
@media (max-width: 600px) {
  .hero-stats {
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  .stat-number { font-size: 2rem; }
  .hero-badge  { font-size: 0.72rem; padding: 6px 14px; }
  .plan-toggle { gap: 10px; }
  .toggle-save { display: block; margin-left: 0; margin-top: 4px; }
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .dif-grid { grid-template-columns: repeat(3, 1fr); }
  .dif-grid .dif-card:nth-child(4),
  .dif-grid .dif-card:nth-child(5) { grid-column: span 1; }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid .dif-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .timeline-steps { grid-template-columns: repeat(3, 1fr); }
  .timeline-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .planos-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sobre-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .exp-grid         { grid-template-columns: 1fr; }
  .para-quem-grid   { grid-template-columns: 1fr; }
  .planos-grid      { grid-template-columns: 1fr; }
  .planos-grid-4    { grid-template-columns: 1fr; }
  .dep-grid         { grid-template-columns: 1fr; }
  .dif-grid         { grid-template-columns: repeat(2, 1fr); }
  .plan-card.recommended { transform: none; }
  .plan-card.recommended:hover { transform: translateY(-4px); }
  .sobre-badge-floating { display: none; }
  .badge-left, .badge-right { display: none; }
  .cta-cards { flex-direction: column; align-items: center; }
  .cta-card  { min-width: 280px; width: 100%; }
  .metodo-cta-inner { flex-direction: column; text-align: center; }
  .metodo-cta-inner .btn { margin-left: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.3rem;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .hamburger { z-index: 1001; }
  section { padding: 70px 0; }
  .hero-stats { flex-direction: column; padding: 24px; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat { padding: 0; }
  .timeline-steps { grid-template-columns: 1fr; }
  .comp-table th, .comp-table td { padding: 10px 12px; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-grid .dif-card:last-child { grid-column: 1; max-width: none; }
  .hide-mobile { display: none; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  #hero h1   { font-size: 2.2rem; }
  .comparativo { padding: 24px 16px; }
  .exp-body, .exp-header { padding: 24px 20px; }
}
