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

:root {
  /* Canvas & Dark Theme Core */
  --background:        #1C1B18; /* Charcoal deep — fundo base */
  --foreground:        #F0E8C8; /* Parchment light — texto primário */
  --surface:           #242218; /* Charcoal levemente claro — superfície */
  --card:              #2A2820; /* Charcoal card */
  --muted:             #1F1E1A; /* Quase preto — fundos de seção */
  --muted-foreground:  #9A8E6E; /* Sand médio — labels e textos auxiliares */

  /* Cores Primárias e Secundárias */
  --primary:           #C9A84C; /* Burnished Gold — CTA principal */
  --primary-foreground:#1C1B18; /* Charcoal escuro */
  --secondary:         #2A2820; /* Charcoal médio */
  --secondary-foreground:#E8D9A0;
  --tertiary:          #8C7A3A; /* Gold apagado */
  --neutral:           #6B6555; /* Sand muted */

  /* Acentos & Bordas */
  --accent:            #C9A84C; /* Gold vivo */
  --accent-foreground: #1C1B18;
  --gold-glow:         rgba(201, 168, 76, 0.18);
  --border:            rgba(201, 168, 76, 0.15); /* Gold alpha */
  --border-hover:      rgba(201, 168, 76, 0.4);
  --ring:              #C9A84C;

  /* Semântica UI */
  --destructive:       #C0392B;
  --destructive-foreground: #F0E8C8;
  --success:           #5A8A3C;
  --warning:           #C9A84C;
  --info:              #6A8FAA;

  /* Radii */
  --radius-sm:         6px;
  --radius-md:         8px;
  --radius-lg:         12px;
  --radius-xl:         16px;
  --radius-full:       9999px;

  /* Motion */
  --duration-fast:     150ms;
  --duration-base:     300ms;
  --duration-gentle:   400ms;
  --ease-out:          cubic-bezier(0.25, 1, 0.5, 1);

  /* Typography */
  --font-sans:         'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:         'Source Code Pro', monospace;
}

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

html {
  scroll-behavior: auto; /* CRÍTICO: Lenis controla o smooth scroll. CSS smooth causa DUPLA SUAVIZAÇÃO e trava o mouse wheel */
  font-size: 16px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden !important;
}

/* ══════════════════ 1. PRELOADER ══════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background-color: var(--background);
  color: var(--foreground);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-core {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-iris {
  width: 80px;
  height: 80px;
}

.li-track {
  stroke: rgba(201, 168, 76, 0.15);
}

.li-ring {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 0.2s ease-out;
}

.li-blades path {
  fill: var(--primary);
  opacity: 0.7;
}

.loader-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.loader-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════ 2. FILM GRAIN ══════════════════ */
.grain {
  display: none;
}

.hero-vignette {
  display: none;
}

/* ══════════════════ 3. NAVBAR CENTRALIZADA COM LOGO DOURADO ══════════════════ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 980px;
  height: 54px;
  background: rgba(28, 27, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 24px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all var(--duration-base) var(--ease-out);
}

.nav-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.nav-logo-img {
  height: 26px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
}

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

.btn-cta-nav {
  background-color: var(--primary);
  color: var(--primary-foreground) !important;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

/* ══════════════════ 4. HERO SECTION (250vh para rolagem ultra-fluida) ══════════════════ */
.hero {
  position: relative;
  height: 250vh; /* Resposta perfeita e cinemática ao movimento de rolagem */
  width: 100%;
}

.hero-stick {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
}

#film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Hero Text Overlays — GSAP controla opacity/transform diretamente */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 3;
  pointer-events: none;
}

.ho-intro {
  opacity: 0; /* GSAP anima para 1 na entrada cinematográfica */
}

.ho-1, .ho-2, .ho-3 {
  opacity: 0; /* GSAP timeline controla aparição via scroll */
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(28, 27, 24, 0.85);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--foreground);
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--secondary-foreground);
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.ho-line {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.ho-line em {
  font-style: italic;
  color: var(--primary);
}

.ho-small {
  font-size: 1.1rem;
  color: var(--secondary-foreground);
  margin-top: 12px;
}

/* CAMERA HUD INDICATORS */
.hero-hud {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 4;
  pointer-events: none;
  font-family: var(--font-mono);
}

.hud-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-foreground);
}

.hud-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  display: block;
}

/* ══════════════════ 5. SEÇÕES DE CONTEÚDO (ESTILO ORIGINAL + DESIGN SYSTEM) ══════════════════ */
.section {
  padding: 100px 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #96A5E3; /* Azul lavanda característico do site original */
  line-height: 1.5;
}

/* Degradê de Fusão de Parallax entre Hero e a próxima seção */
.hero-blend-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(28, 27, 24, 0.3) 35%,
    rgba(28, 27, 24, 0.8) 75%,
    var(--background) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ══════════════════ 5. SEÇÕES DE CONTEÚDO (FUNDO UNIFICADO + DESIGN SYSTEM SYSTEM) ══════════════════ */
.section {
  padding: 100px 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-foreground);
  line-height: 1.5;
}

/* --- Solutions Section (Parallax Overlap & Degradê de Fusão) --- */
.solutions-section {
  position: relative;
  z-index: 10;
  margin-top: -140px; /* Overlap fluído que une a Hero com a Seção de Soluções */
  background: linear-gradient(180deg, transparent 0%, var(--background) 140px);
  padding: 140px 40px 100px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.06), 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

/* Borda Interna Brilhante & Fluída (Glow Inset + Gradient Ambient Light) */
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), transparent 40%, transparent 60%, rgba(201, 168, 76, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: inset 0 0 25px rgba(201, 168, 76, 0.15), 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 28px var(--gold-glow);
}

.solution-card:hover::before {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.6), rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.5));
}

.card-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.solution-card:hover .card-img {
  transform: scale(1.06);
}

.card-caption {
  font-size: 1rem;
  color: var(--secondary-foreground);
  line-height: 1.5;
  max-width: 320px;
}

/* Product Highlight Card (Centro) */
.product-highlight {
  margin-top: -20px;
  border-color: var(--primary);
  box-shadow: inset 0 0 30px rgba(201, 168, 76, 0.12), 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
}

.product-image-wrap {
  aspect-ratio: 3 / 4;
}

.product-img-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.product-caption {
  font-size: 1.05rem;
  color: var(--secondary-foreground);
  margin-top: 4px;
}

.shop-now-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--duration-fast);
}

.shop-now-link:hover {
  color: #E8C468;
}

/* Card Em Breve / Coming Soon */
.coming-soon-card {
  position: relative;
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: inset 0 0 25px rgba(201, 168, 76, 0.1), 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #E8C468, #C9A84C);
  color: #0B0D12;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Imagem Enquadrada Perfeitamente no Card Em Breve */
.coming-soon-card .product-image-wrap {
  padding: 0;
  overflow: hidden;
  background-color: var(--surface);
}

.coming-soon-card .product-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.coming-soon-card:hover .product-img {
  transform: scale(1.06);
}

/* ══════════════════ ANIMAÇÃO DE GRADIENTE CÔNICO EM ROTAÇÃO SUAVE (BORDAS CONTIDAS) ══════════════════ */
@property --conic-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes conicBorderRotate {
  0% {
    --conic-angle: 0deg;
  }
  100% {
    --conic-angle: 360deg;
  }
}

/* Aplicado EXCLUSIVAMENTE nos 2 cards de produtos do Health Solutions Now e nos cards da seção Energy & Focus */
.solutions-grid .product-highlight,
.solutions-grid .coming-soon-card,
.ef-ing-card {
  position: relative;
  overflow: hidden;
  border-color: transparent !important;
}

.solutions-grid .product-highlight::before,
.solutions-grid .coming-soon-card::before,
.ef-ing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px; /* Espessura contida da borda */
  background: conic-gradient(
    from var(--conic-angle, 0deg),
    rgba(201, 168, 76, 0.15) 0deg,
    #E8C468 90deg,
    rgba(201, 168, 76, 0.25) 180deg,
    #D4AF37 270deg,
    rgba(201, 168, 76, 0.15) 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: conicBorderRotate 6s linear infinite;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 3;
}

.solutions-grid .product-highlight:hover::before,
.solutions-grid .coming-soon-card:hover::before,
.ef-ing-card:hover::before {
  background: conic-gradient(
    from var(--conic-angle, 0deg),
    rgba(232, 196, 104, 0.35) 0deg,
    #FFF0B5 90deg,
    rgba(232, 196, 104, 0.45) 180deg,
    #E8C468 270deg,
    rgba(232, 196, 104, 0.35) 360deg
  );
  animation-duration: 4s; /* Rotação levemente mais acelerada ao passar o mouse */
}

/* ══════════════════ 5B. SEÇÃO EXCLUSIVA ENERGY & FOCUS ══════════════════ */
.energyfocus-section {
  background-color: var(--background);
  padding: 110px 40px;
  border-top: 1px solid var(--border);
}

.ef-container {
  max-width: 1240px;
  margin: 0 auto;
}

.ef-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 90px;
}

.ef-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--gold-soft);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ef-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.ef-title em {
  font-style: italic;
  color: var(--primary);
}

.ef-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-foreground);
  line-height: 1.4;
  margin-bottom: 16px;
}

.ef-desc {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 32px;
}

.ef-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 32px;
}

.ef-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.ef-trust-icon {
  font-size: 1.35rem;
}

.ef-trust-item strong {
  display: block;
  color: var(--foreground);
  font-size: 0.875rem;
}

.ef-trust-item span {
  font-size: 0.75rem;
}

.ef-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-amazon-buy {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.3);
  transition: background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-amazon-buy:hover {
  background-color: #E8C468;
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(201, 168, 76, 0.45);
}

.btn-amazon-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-out);
  overflow: hidden;
}

.btn-amazon-badge-link:hover {
  transform: translateY(-3px);
}

.btn-amazon-badge-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.15);
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.btn-amazon-badge-link:hover .btn-amazon-badge-img {
  box-shadow: 0 0 45px rgba(255, 153, 0, 0.45);
}

.btn-more-info {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-more-info:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.3);
}

.btn-tiktok-buy {
  background-color: #010101;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-tiktok-buy:hover {
  background-color: #000000;
  transform: translateY(-3px);
  box-shadow: -3px 3px 0px #00f2fe, 3px -3px 0px #fe0979;
}

.ef-price-tag {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--secondary-foreground);
  background-color: var(--card);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.ef-bottle-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ef-glow-aura {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.32) 0%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
}

.ef-bottle-img {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.85));
  transition: transform 0.6s var(--ease-out);
}

.ef-bottle-showcase:hover .ef-bottle-img {
  transform: scale(1.05) translateY(-6px);
}

/* Formula & Ingredients Cards */
.ef-formula-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.ef-formula-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 10px;
}

.ef-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ef-ing-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.05), 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.ef-ing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), transparent 50%, rgba(201, 168, 76, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.ef-ing-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: inset 0 0 25px rgba(201, 168, 76, 0.15), 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px var(--gold-glow);
}

.ef-ing-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 12px;
}

.ef-ing-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 12px;
}

.ef-ing-desc {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* --- About Us Section --- */
.about-section {
  background-color: var(--background);
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.about-text {
  font-size: 1.05rem;
  color: var(--secondary-foreground);
  line-height: 1.65;
  font-weight: 400;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.3));
  transition: filter var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.about-logo-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.45));
}

/* --- Testimonials / Reviews Section --- */
.reviews-section {
  background-color: var(--background);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.05), 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), transparent 50%, rgba(201, 168, 76, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: inset 0 0 25px rgba(201, 168, 76, 0.12), 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

.stars {
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-quote {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 440px;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 16px var(--gold-glow);
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* --- Contact / Get in Touch Section --- */
.contact-section {
  background-color: var(--background);
  color: var(--foreground);
  padding: 110px 40px;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(201, 168, 76, 0.06), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), transparent 40%, rgba(201, 168, 76, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--surface);
  font-family: inherit;
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background-color: var(--card);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
  transition: background-color var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: #E8C468;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* --- Footer Section --- */
.footer {
  background-color: var(--background);
  color: var(--foreground);
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon {
  color: var(--primary);
  transition: transform var(--duration-fast), color var(--duration-fast);
}

.social-icon:hover {
  color: #E8C468;
  transform: translateY(-2px);
}

.social-handle {
  font-size: 0.95rem;
  color: var(--secondary-foreground);
  font-weight: 500;
}

.copyright-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-subhead {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.support-email {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.support-email a {
  color: var(--foreground);
  text-decoration: underline;
  transition: color var(--duration-fast);
}

.support-email a:hover {
  color: var(--primary);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--duration-fast);
}

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

.footer-discreet-li {
  margin-top: 6px;
}

.footer-legal-links a.footer-discreet-link {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.82rem;
  transition: color var(--duration-fast);
}

.footer-legal-links a.footer-discreet-link:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Developer Logo & Credits - Area Vazia do Footer */
.developed-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.dev-text {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.dev-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast);
  opacity: 0.95;
}

.dev-logo-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.dev-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  background: rgba(42, 40, 32, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ══════════════════ 6. OTIMIZAÇÃO RESPONSIVA PARA MOBILE (iOS / Android) ══════════════════ */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-highlight {
    margin-top: 0;
  }

  .ef-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ef-title {
    font-size: 2.25rem;
  }

  .ef-trust-badges {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ef-trust-item {
    justify-content: center;
  }

  .ef-action-row {
    justify-content: center;
  }

  .ef-ingredients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-logo-img {
    max-width: 320px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .developed-by {
    justify-content: center;
    margin-top: 24px;
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile Flutuante e Limpa */
  .nav {
    top: 12px;
    width: calc(100% - 24px);
    height: 50px;
    padding: 0 16px;
  }

  .nav-logo-img {
    height: 22px;
    max-width: 140px;
  }

  .nav-links {
    display: none; /* Em mobile o foco é nos CTAs principais */
  }

  .btn-cta-nav {
    padding: 6px 12px;
    font-size: 0.75rem !important;
  }

  /* Hero Section Mobile */
  .hero {
    height: 400vh;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .ho-line {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .ho-small {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.6875rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .hero-hud {
    bottom: 20px;
    right: 20px;
  }

  /* Seções e Grids em Celulares */
  .section {
    padding: 60px 20px;
  }

  .section-title, .about-title, .contact-title {
    font-size: 2rem;
  }

  /* Cookie Banner Mobile */
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 18px;
  }
}

/* ══════════════════ 7. PÁGINAS LEGAIS (PRIVACY, TERMS & COOKIES) ══════════════════ */
.legal-page {
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
}

.legal-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 130px 24px 80px;
}

.legal-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: inset 0 0 30px rgba(201, 168, 76, 0.04), 0 16px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.legal-nav-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.legal-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.legal-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--card);
}

.legal-tab.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
}

.legal-header {
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.legal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-subtitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

.legal-content p {
  font-size: 0.98rem;
  color: var(--secondary-foreground);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 20px 24px;
  color: var(--secondary-foreground);
}

.legal-content li {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--foreground);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  transition: color var(--duration-fast);
}

.legal-content a:hover {
  color: #E8C468;
}

@media (max-width: 768px) {
  .legal-container {
    padding: 100px 16px 60px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-title {
    font-size: 1.85rem;
  }
}
