/* ============================================
   HIDRALISO — Landing Page CSS
   Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-weight: 500;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
}

p, span, li, a {
  color: var(--text-main);
  opacity: 1 !important;
}

/* ── CSS VARIABLES ── */
:root {
  --primary: #FF00B0;
  --primary-dark: #690078;
  --primary-light: #E001FF;
  --accent: #ff0198;
  --accent-dark: #5B327E;
  --gold: #FFEC00;
  --rose: #fb7185;
  --bg-dark: #161518;
  --bg-card: rgba(36, 19, 49, 0.6);
  --bg-card-2: rgba(53, 38, 81, 0.6);
  --text-main: #F9F6FF;
  --text-muted: #D2C4EC;
  --text-soft: #D2C4EC;
  --border: rgba(151, 21, 170, 0.43);
  --border-hover: rgba(224, 1, 255, 0.6);
  --glow: 0px 9px 30px 0px rgba(224, 1, 255, 0.3);
  --glow-sm: 0 0 20px rgba(224, 1, 255, 0.2);
  --gradient-main: linear-gradient(45deg, #690078, #E001FF, #690078, #E001FF);
  --gradient-brand: linear-gradient(169deg, #FF00B0, #5B327E);
  --gradient-gold: linear-gradient(135deg, #FFEC00, #EAC228);
  --gradient-bg: linear-gradient(180deg, #161518 0%, #241331 50%, #161518 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-rose { color: var(--rose); }

.hidden { display: none !important; }

/* ── ICONS ── */
.elegant-icon {
  width: 1em;
  height: 1em;
  stroke-width: 1.5;
  stroke: url(#icon-grad);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.badge-label {
  display: inline-block;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(192, 132, 252, 0.3);
  color: var(--text-main);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  background-size: 400% 200%;
  color: #FFF9F9;
  border-bottom: 3px solid #1e0022 !important;
  box-shadow: 6px 6px 22px rgba(224, 1, 255, 0.25) !important;
  animation: brilho-cta 3.5s ease-in-out infinite;
}

@keyframes brilho-cta {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
  border-bottom: 5px solid #1e0022 !important;
  box-shadow: 6px 6px 22px rgba(224, 1, 255, 0.4) !important;
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(0,0,0,0.15);
}

.btn-ghost:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.3);
  color: #111827;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(192, 132, 252, 0.1);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.btn-premium {
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 700;
  box-shadow: 0 4px 30px rgba(251, 191, 36, 0.4);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(251, 191, 36, 0.6);
  filter: brightness(1.1);
}

.btn-nav {
  background: var(--gradient-main);
  color: white;
  padding: 10px 22px;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.3);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(192, 132, 252, 0.5);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--gradient-brand);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 100;
  animation: pulse-bar 3s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(147, 51, 234, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
              var(--bg-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239333ea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px 40px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.3);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-image-wrap {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-15px); }
}

.hero-product-card {
  position: relative;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 80px rgba(192, 132, 252, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

.product-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-product-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.product-placeholder {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.product-placeholder span { font-size: 4rem; display: block; margin-bottom: 12px; }
.product-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-placeholder small { color: var(--text-muted); font-size: 0.9rem; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(192, 132, 252, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(20px); opacity: 0.3; }
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.proof-item span { color: var(--text-muted); }

/* ── PROBLEMA ── */
.problema {
  background: var(--gradient-bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.problem-card:hover::before { opacity: 1; }

.problem-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

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

/* ── SOLUÇÃO ── */
.solucao {
  background: var(--bg-dark);
}

.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solucao-visual {
  display: flex;
  justify-content: center;
}

/* ── SOLUÇÃO COLLAGE ── */
.solucao-collage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  margin: 0 auto;
}

.collage-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(224, 1, 255, 0.4) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.collage-item {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 2px solid rgba(192, 132, 252, 0.3);
  transition: var(--transition);
  background: var(--bg-card);
}

.collage-item:hover {
  transform: translateY(-5px) scale(1.02);
  z-index: 10 !important;
  border-color: rgba(224, 1, 255, 0.7);
  box-shadow: var(--glow);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-1 {
  top: 0;
  left: 0;
  width: 55%;
  height: 60%;
  z-index: 2;
}

.collage-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 65%;
  z-index: 3;
}

.collage-3 {
  top: 10%;
  right: -5%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 4;
  border: 4px solid var(--primary);
  box-shadow: 0 10px 25px rgba(255, 0, 176, 0.3);
}

.collage-item .ba-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.collage-2 .ba-label {
  top: auto;
  bottom: 15px;
  left: auto;
  right: 15px;
}

@media (max-width: 768px) {
  .solucao-collage {
    height: 380px;
    max-width: 100%;
  }
  .collage-1 {
    width: 60%;
    height: 55%;
  }
  .collage-2 {
    width: 65%;
    height: 60%;
  }
  .collage-3 {
    width: 130px;
    height: 130px;
    top: 5%;
    right: 0;
  }
}

.before-after {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -12px;
  left: 20px;
  right: 20px;
}

.ba-label {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.before-label {
  background: rgba(251, 113, 133, 0.2);
  color: var(--rose);
  border: 1px solid rgba(251, 113, 133, 0.3);
}

.after-label {
  background: rgba(192, 132, 252, 0.2);
  color: var(--primary);
  border: 1px solid rgba(192, 132, 252, 0.3);
}

.solucao-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 20px;
}

.solucao-content .section-sub { margin: 0 0 32px; text-align: left; }

.benefits-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ── STEPS ── */
.steps-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gradient-brand);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.step-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p { color: var(--text-muted); font-size: 0.9rem; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--text-soft);
  font-weight: 400;
}

/* ── PRICING ── */
.pricing-section {
  background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%),
              var(--bg-dark);
}

.product-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.3);
}

.tab-btn:not(.active):hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.plan-card.featured {
  border-color: rgba(255, 0, 176, 0.43);
  background: linear-gradient(167deg, #6600C2 0%, #FF00B0 100%);
  box-shadow: 0 0 40px rgba(255, 0, 176, 0.25);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 60px rgba(224, 1, 255, 0.4);
}

.plan-card.premium {
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(135deg, #ffffff, #fefce8);
}

.plan-card.premium:hover {
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

.plan-badge-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.plan-card.premium .plan-badge-top {
  background: var(--gradient-gold);
  color: #0a0a0f;
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 24px;
}

.plan-card:not(.featured):not(.premium) .plan-header { margin-top: 0; }
.plan-card.featured .plan-header,
.plan-card.premium .plan-header { margin-top: 28px; }

.plan-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(192, 132, 252, 0.15);
  color: var(--primary);
  border: 1px solid rgba(192, 132, 252, 0.3);
  white-space: nowrap;
}

.plan-badge.popular {
  background: rgba(244, 114, 182, 0.15);
  color: var(--accent);
  border-color: rgba(244, 114, 182, 0.3);
}

.plan-badge.destaque {
  background: var(--gradient-main);
  color: white;
  border: none;
}

.plan-badge.premium-badge {
  background: var(--gradient-gold);
  color: #0a0a0f;
  border: none;
}

.plan-price {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.price-main {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-card.premium .price-main {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-card.featured .price-main {
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  color: #FFFFFF;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-commission {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
}

.price-10off {
  font-size: 0.8rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 2px 10px;
  border-radius: 100px;
  width: fit-content;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.plan-features li::first-letter { color: var(--primary); }

.plan-card .btn { width: 100%; justify-content: center; }

.pricing-guarantee {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.guarantee-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-guarantee p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.testimonial-card.featured-testimonial {
  border-color: rgba(192, 132, 252, 0.4);
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.05), transparent);
}

.stars { margin-bottom: 14px; font-size: 1rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── GARANTIA ── */
.garantia-section {
  background: var(--bg-dark);
}

.garantia-card {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.garantia-icon { font-size: 4rem; }

.garantia-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.garantia-content p {
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.7;
}

.garantia-content .btn { margin-top: 16px; }

.garantia-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(192, 132, 252, 0.4);
}

.badge-circle strong {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.badge-circle span {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

.badge-circle small {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-dark);
}

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

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

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

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

.faq-arrow {
  font-size: 0.75rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.final-cta-card {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.cta-decoration {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.final-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.final-cta-card > p {
  color: #4b5563;
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.final-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.final-features span {
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  color: var(--primary-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.secure-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-badge {
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.disclaimer {
  font-size: 0.72rem !important;
  color: var(--text-soft);
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sticky-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: 100px;
  padding: 12px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(46, 204, 113, 0.2);
}

.sticky-inner span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-image-wrap { 
    position: relative; 
    top: auto; 
    right: auto; 
    transform: none; 
    margin: 40px auto 0; 
    animation: none;
  }
  .hero-content { max-width: 100%; }
  .solucao-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .garantia-card { grid-template-columns: 1fr; text-align: center; }
  .garantia-icon { text-align: center; }
  .garantia-badge { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .navbar { padding: 16px 20px; }
  .hero-content { padding: 40px 20px 30px; }
  .hero-title {
    font-size: 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .garantia-card { padding: 40px 24px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .final-cta-card { padding: 40px 24px; }
  .proof-inner { gap: 20px; }
  .proof-item span { display: none; }
}

@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .product-tabs { flex-direction: column; border-radius: var(--radius); }
  .tab-btn { border-radius: var(--radius-sm); }
}

/* ── EMOJIS ELEGANTES ── */
.emoji-elegant {
  display: inline-block;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  filter: drop-shadow(0 4px 6px rgba(192, 132, 252, 0.4)) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transform: scale(1.15);
  transition: transform 0.3s;
}

/* ── VIDEO CAROUSEL (VIMEO) ── */
.video-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
  width: 100%;
}

.video-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(192, 132, 252, 0.2);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}

.video-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide {
  min-width: 100%;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
}

.video-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  pointer-events: auto;
}

.carousel-btn {
  background: var(--gradient-main);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 10;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(192, 132, 252, 0.5);
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* ── PLAN IMAGES & MISC ── */
.plan-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}

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

.product-mockup-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}

.plan-card:hover .product-mockup-img {
  transform: scale(1.05) translateY(-4px);
}

.garantia-selo-img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(46, 204, 113, 0.3));
}

.hero-model-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-top: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .carousel-btn { position: absolute; top: 50%; width: 40px; height: 40px; margin-top: -20px; }
  .vprev-btn { left: -10px; }
  .vnext-btn { right: -10px; }
}

/* ── NEW PREMIUM MEDIA COMPONENTS ── */
.video-showcase {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glow);
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg-card);
}

.video-showcase video {
  width: 100%;
  height: auto;
  display: block;
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transition: var(--transition);
  aspect-ratio: 4/5;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: var(--border-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.problem-video-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glow);
  border: 1px solid var(--border);
}

.problem-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.demo-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .premium-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

