:root {
  /* Paleta SÁLVIA Premium - Refinada */
  --primary: #1B5E20; /* Verde Floresta Profundo */
  --primary-light: #2E7D32;
  --secondary: #81C784; /* Verde Sálvia Suave */
  --secondary-light: #F1F8E9; /* Fundo Creme Esverdeado */
  --dark: #1A1A1A;
  --text: #4A4A4A;
  --text-light: #757575;
  --white: #FFFFFF;
  --bg-color: #FDFDFD; /* Off-white quase puro */
  --bg-light: #FFFFFF;
  --whatsapp: #25D366;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(27, 94, 32, 0.08); /* Sombra levemente esverdeada */
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.1);
  
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  --radius: 16px;
  --radius-lg: 32px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg-color);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

#smooth-wrapper {
  overflow: visible !important;
  width: 100%;
}

body.js-ready #smooth-wrapper {
  overflow: hidden !important;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.1;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-small {
  max-width: 850px;
}

.section-padding {
  padding: 120px 0;
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 4rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background-color: var(--bg-light); }

/* Glassmorphism */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.15rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 50px; /* Mais arredondado = mais premium */
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1.05rem;
  letter-spacing: -0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(27, 94, 32, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

@media (max-width: 480px) {
  .logo img { height: 80px !important; }
  .nav-btn { display: none !important; } /* Esconder botão na nav em mobile small para dar espaço */
  .navbar { padding: 0.5rem 0; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.03);
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--dark); /* Alterado de var(--text) para mais contraste */
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: radial-gradient(circle at top right, #F1F8E9 0%, transparent 40%),
              radial-gradient(circle at bottom left, #E8F5E9 0%, transparent 30%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -2.5px;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  max-width: 90%;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg); /* Toque dinâmico */
}

.metric-card {
  position: absolute;
  bottom: 20px;
  left: -40px;
  padding: 2rem;
  border-radius: var(--radius);
  z-index: 10;
}

/* Base Sections Styles */
.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Raio-X Section */
.raio-x {
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.raio-x-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 100vh;
  gap: 4rem;
  padding: 100px 24px;
}

.raio-x-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raio-x-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  z-index: 5;
}

.raio-x-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* SVG Lines */
.raio-x-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.connection-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.6;
}

/* Etiquetas */
.x-label {
  position: absolute;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  max-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateX(30px);
  z-index: 10;
}

.x-label .dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--primary-light);
}

.x-label h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.x-label p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-light);
}

.label-protein { top: 10%; right: -30%; }
.label-carb { top: 40%; right: -35%; }
.label-veg { bottom: 10%; right: -30%; }

.raio-x-text-content {
  padding-left: 2rem;
}

.sticky-text {
  position: sticky;
  top: 150px;
}

.scroll-instruction {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.7;
}

.scroll-instruction .material-symbols-outlined {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-5px);}
  60% {transform: translateY(-3px);}
}

@media (max-width: 992px) {
  .raio-x-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    height: auto;
    min-height: auto;
    gap: 2rem;
  }
  
  .raio-x-visual {
    height: auto;
    width: 100%;
    margin-bottom: 2rem;
  }

  .raio-x-image-wrapper {
    max-width: 100%;
  }
  
  .x-label {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin: 1.5rem 0;
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    text-align: left;
    display: flex;
    box-shadow: var(--shadow-sm);
  }
  
  .raio-x-svg { display: none; }
  .sticky-text { position: static; text-align: center; }
  .raio-x-text-content { padding-left: 0; margin-bottom: 2rem; }
  .scroll-instruction { display: none; }
}

/* Problema Cards */
.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  min-height: 400px; /* Garante que a seção tenha altura mínima */
}

.problema-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition);
}

.problema-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

/* Solução Section */
.solucao-flex {
  display: flex;
  gap: 6rem;
  align-items: center;
}

.solucao-text h2 {
  font-size: 3.5rem;
}

.beneficios-lista li {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  display: flex; /* Adicionado */
  align-items: center; /* Adicionado */
  gap: 1.5rem; /* Adicionado */
  text-align: left;
}

.beneficios-lista .check {
  background: var(--primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* Planos */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2rem;
}

.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.plano-card.destaque {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F8E9 100%);
  border: 2px solid var(--primary);
  transform: scale(1.08);
}

.plano-preco .valor {
  font-size: 4rem;
  font-family: 'Outfit';
}

/* Depoimentos */
.depoimento-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--primary);
}

/* Footer & Extras */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0 40px;
}

.footer .logo img {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: var(--transition);
}

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

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.floating-whatsapp {
  width: 70px;
  height: 70px;
  bottom: 3rem;
  right: 3rem;
}

/* Responsividade Refinada */
@media (max-width: 1100px) {
  .hero h1 { font-size: 3.5rem; }
  .hero-container { gap: 2rem; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1.5px; }
  .hero p { margin: 0 auto 2.5rem; font-size: 1.1rem; }
  .hero-img { transform: rotate(0); }
  .planos-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; gap: 1.5rem; }
  .plano-card.destaque { transform: scale(1); }
  .solucao-flex { flex-direction: column-reverse; text-align: center; gap: 3rem; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2.2rem; }
  .btn { width: 100%; padding: 1.2rem; }
  .metric-card { display: none; }
  .problema-grid { grid-template-columns: 1fr; gap: 1rem; min-height: auto; }
  
  .navbar {
    position: absolute; /* Rola com a página, não fica fixa */
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 1.5rem 1rem;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .logo img {
    height: 30px; /* Logo mais minimalista */
  }
}
  .problema-card { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .section-subtitle { margin-bottom: 1.5rem; font-size: 1.1rem; }
  .section-title { font-size: 1.8rem; }
  
  /* Reduzir imagem de ingredientes */
  .solucao-img img { 
    max-height: 300px; 
    object-fit: cover; 
    width: 100%;
    border-radius: var(--radius);
  }
}
