:root {
  /* Colors - High Impact Emerald & Amber */
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.4);
  --secondary: #064e3b;
  --accent: #fbbf24;
  --accent-hover: #d97706;
  --accent-glow: rgba(251, 191, 36, 0.4);
  
  --bg-deep: #020617;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --glass-white: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  /* Fluid Typography */
  --font-hero: clamp(4rem, 12vw, 10rem);
  --font-h1: clamp(3rem, 8vw, 6rem);
  --font-h2: clamp(2.5rem, 5vw, 4rem);
  --font-base: 1.15rem;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Multi-layer Mesh Gradient Background */
.mesh-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
  background-color: #f8fafc;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 70vw;
  height: 70vw;
  filter: blur(120px);
  border-radius: 50%;
  animation: move 20s infinite alternate;
  opacity: 0.4;
}

.blob-1 { top: -20%; left: -20%; background: #10b981; }
.blob-2 { bottom: -20%; right: -20%; background: #fbbf24; animation-delay: -5s; }
.blob-3 { top: 30%; left: 30%; width: 50vw; background: #34d399; animation-delay: -10s; }

@keyframes move {
  from { transform: translate(-10%, -10%) rotate(0deg) scale(1); }
  to { transform: translate(10%, 10%) rotate(40deg) scale(1.1); }
}

/* Typography Utilities */
.text-h1 {
  font-family: var(--font-heading);
  font-size: var(--font-h1);
  font-weight: 800;
  line-height: 1.1;
  color: #064e3b;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oversized-heading {
  font-family: var(--font-heading);
  font-size: var(--font-hero);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: #10b981;
  opacity: 0.04;
  position: absolute;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* Base Styles */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

section {
  padding: 10rem 0;
  position: relative;
}

/* V2 Components */
.glass-panel-v2 {
  background: var(--glass-white);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08), 0 18px 36px -18px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
}

.btn-premium {
  padding: 1.5rem 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-primary {
  background: #10b981;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 60px -10px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
  background: #fbbf24;
  color: #78350f;
  box-shadow: 0 20px 40px -10px rgba(251, 191, 36, 0.5);
}

.btn-secondary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 60px -10px rgba(251, 191, 36, 0.6);
}

/* Header V2 */
.header-v2 {
  position: fixed;
  top: 3.5rem; /* Account for ad bar + original offset */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo-v2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #064e3b;
  text-decoration: none;
  letter-spacing: -1px;
}

.logo-v2 span {
  color: #10b981;
}

.nav-v2 {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-v2 a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.nav-v2 a:hover {
  color: #10b981;
}

/* Animations AOS V2 */
[data-aos] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  section { padding: 6rem 0; }
}

@media (max-width: 768px) {
  .header-v2 { padding: 0.75rem 1.5rem; }
  .nav-v2 { display: none; }
}

/* --------------------
   HERO V2 
   -------------------- */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.badge-v2 {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ecfdf5;
  color: #059669;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1.3rem;
  color: #475569;
  margin: 2rem 0 3rem;
  max-width: 500px;
}

.hero-btns-v2 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 3rem;
}

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

.stat-item strong {
  font-size: 2rem;
  font-weight: 900;
  color: #064e3b;
}

.stat-item span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

/* Hero Visual V2 */
.hero-visual-v2 {
  position: relative;
}

.main-image-container {
  padding: 1rem;
  position: relative;
  z-index: 5;
}

.main-image-container img {
  width: 100%;
  border-radius: 40px;
  display: block;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.main-image-aura {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  z-index: 1;
  animation: pulse-aura 5s infinite ease-in-out;
}

@keyframes pulse-aura {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.floating-pill {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  font-weight: 800;
  color: #064e3b;
  z-index: 10;
  white-space: nowrap;
}

.pill-top {
  top: 10%;
  left: -25%;
  animation: float-v2 7s infinite ease-in-out;
}

.pill-bottom {
  bottom: 20%;
  right: -15%;
  animation: float-v2 8s infinite ease-in-out reverse;
}

@keyframes float-v2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

/* --------------------
   SINTOMAS V2 (Staggered Story)
   -------------------- */
.sintomas-v2 {
  background: #ffffff;
  padding: 12rem 0;
  border-radius: 80px;
  z-index: 2;
}

.section-header-v2 {
  text-align: left;
  margin-bottom: 6rem;
  max-width: 800px;
}

.section-header-v2 h2 {
  margin-top: 1.5rem;
}

.staggered-story {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.story-block {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-img {
  flex: 1;
  position: relative;
}

.story-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 50px;
}

.story-img::after {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border: 2px solid rgba(16, 185, 129, 0.1);
  border-radius: 60px;
  z-index: -1;
}

.story-text {
  flex: 1;
}

.story-text .number {
  font-size: 5rem;
  font-weight: 900;
  color: #ecfdf5;
  line-height: 1;
  margin-bottom: 1rem;
}

.story-text h3 {
  font-size: 2.5rem;
  color: #064e3b;
  margin-bottom: 1.5rem;
}

.story-text p {
  font-size: 1.2rem;
  color: #64748b;
}

/* --------------------
   BENEFITS & FORMULA V2
   -------------------- */
.benefits-v2 {
  padding: 12rem 0;
}

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

.benefit-card-v2 {
  padding: 4rem;
  transition: var(--transition-smooth);
}

.benefit-card-v2:hover {
  transform: scale(1.02) translateY(-10px);
}

.benefit-card-v2 .icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  display: block;
}

/* --------------------
   CHECKOUT V2 
   -------------------- */
.checkout-v2 {
  padding: 8rem 0;
}

.checkout-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  overflow: hidden;
  border: none;
}

.checkout-visual {
  background: var(--secondary);
  color: white;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checkout-visual h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.checkout-form-v2 {
  padding: 5rem;
  background: white;
}

.form-group-v2 {
  margin-bottom: 2rem;
}

.form-group-v2 label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #064e3b;
}

.form-group-v2 input, 
.form-group-v2 textarea {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  font-family: inherit;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.form-group-v2 input:focus {
  border-color: #10b981;
  outline: none;
  background: #f8fafc;
}

@media (max-width: 1024px) {
  .story-block, .story-block.reverse {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }
  .story-img img { height: 400px; }
  .checkout-card { grid-template-columns: 1fr; }
  .checkout-visual, .checkout-form-v2 { padding: 3rem 2rem; }
}


/* --------------------
   FAQ & ACCORDION
   -------------------- */
.faq-v4 { padding: 10rem 0; }
.accordion-v4 { max-width: 900px; margin: 4rem auto 0; }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.accordion-header { 
  width: 100%; padding: 2rem 0; background: none; border: none; 
  display: flex; justify-content: space-between; align-items: center; 
  cursor: pointer; font-family: var(--font-heading); font-weight: 700; 
  font-size: 1.25rem; color: #064e3b; text-align: left;
}
.accordion-content { 
  max-height: 0; overflow: hidden; transition: all 0.5s ease; opacity: 0; 
}
.accordion-item.active .accordion-content { 
  max-height: 500px; opacity: 1; padding-bottom: 2rem; 
}

/* --------------------
   TARGET SEGMENTS
   -------------------- */
.segment-card { 
  padding: 3rem; background: white; border-radius: 40px; 
  transition: var(--transition-smooth); border: 1px solid #f1f5f9;
}
.segment-card:hover { transform: translateY(-10px); border-color: #10b981; }
