/* ===== Pepper Parts — landing page ===== */

:root{
  --bg:#08080a;
  --bg-soft:#101012;
  --card:#151517;
  --card-2:#1b1b1e;
  --line:rgba(255,255,255,.09);
  --line-soft:rgba(255,255,255,.05);
  --red:#d6362d;
  --red-2:#ff5a3c;
  --orange:#e85f2f;
  --white:#f6f5f2;
  --gray:#a3a3aa;
  --gray-dim:#6d6d75;
  --grad: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --radius: 18px;
  --wrap: 1180px;
  font-size: 16px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Oswald', 'Inter', sans-serif;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0;
}
p{ margin:0; color:var(--gray); line-height:1.65; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 28px; }

/* film grain overlay for texture */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* i18n toggle */
[data-lang="pt"] [data-i18n]{ }
html[data-lang]{}
body [lang-hidden]{ display:none; }

/* ===================== NAV ===================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled{
  background:rgba(8,8,10,.78);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  padding:12px 0;
  box-shadow:0 1px 0 var(--line);
}
.nav-inner{
  max-width:var(--wrap); margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:34px; height:34px; border-radius:50%; }
.brand-word{
  font-family:'Oswald', sans-serif; font-weight:600; letter-spacing:.06em;
  font-size:.95rem;
}
.brand-word em{ font-style:normal; color:var(--red-2); }

.nav-links{ display:flex; gap:32px; }
.nav-links a{
  font-size:.85rem; font-weight:500; color:var(--gray);
  transition:color .2s ease; position:relative;
}
.nav-links a:hover{ color:var(--white); }
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background:var(--grad); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-actions{ display:flex; align-items:center; gap:16px; }

.lang-toggle{
  display:flex; align-items:center; gap:6px;
  background:transparent; border:1px solid var(--line); border-radius:20px;
  padding:6px 12px; cursor:pointer; color:var(--gray-dim); font-size:.75rem;
  font-weight:600; letter-spacing:.04em;
}
.lang-opt{ opacity:.5; transition:opacity .2s, color .2s; padding:2px; }
.lang-opt.is-active{ opacity:1; color:var(--white); }
.lang-sep{ opacity:.3; }

.burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:transparent; border:1px solid var(--line);
  border-radius:10px; cursor:pointer;
}
.burger span{ width:16px; height:2px; background:var(--white); margin:0 auto; border-radius:2px; }

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px; border-radius:100px; font-weight:600; font-size:.88rem;
  letter-spacing:.02em; cursor:pointer; border:1px solid transparent;
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.btn .ico{ width:16px; height:16px; fill:currentColor; }
.btn-primary{
  background:var(--grad); color:#fff;
  box-shadow:0 8px 24px -8px rgba(214,54,45,.55);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 30px -8px rgba(232,95,47,.65); }
.btn-ghost{
  background:rgba(255,255,255,.04); color:var(--white); border-color:var(--line);
}
.btn-ghost:hover{ background:rgba(255,255,255,.09); transform:translateY(-2px); }
.btn-outline{
  background:transparent; color:var(--white); border-color:var(--line);
}
.btn-outline:hover{ border-color:var(--red-2); color:var(--red-2); }
.btn-sm{ padding:10px 18px; font-size:.78rem; }
.btn-lg{ padding:17px 32px; font-size:.95rem; }

/* ===================== HERO ===================== */
.hero{
  position:relative; min-height:100svh; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  padding:140px 24px 100px; overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{
  width:100%; height:100%; object-fit:cover; object-position:60% 40%;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.08);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.8) 55%, var(--bg) 96%),
    linear-gradient(90deg, rgba(8,8,10,.65) 0%, rgba(8,8,10,.25) 45%, rgba(8,8,10,.65) 100%);
}
.hero-glow{
  position:absolute; width:900px; height:900px; left:50%; top:20%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(214,54,45,.28) 0%, rgba(232,95,47,0) 65%);
  filter:blur(10px);
}
.hero-content{ position:relative; z-index:2; max-width:820px; }
.eyebrow{
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.18em;
  color:var(--orange); padding:8px 16px; border:1px solid rgba(232,95,47,.35);
  border-radius:100px; background:rgba(232,95,47,.08); margin-bottom:26px;
}
.hero-title{
  font-size:clamp(2.6rem, 7vw, 5.4rem); line-height:1.02; font-weight:700;
  margin-bottom:26px;
}
.hw{ display:inline-block; margin:0 .18em; transition:color .6s ease, text-shadow .6s ease; color:var(--white); }
.hw.active{ color:transparent; background:var(--grad); -webkit-background-clip:text; background-clip:text; }
.hero-sub{
  font-size:1.08rem; color:#d3d3d8; max-width:640px; margin:0 auto 40px;
}
.hero-cta{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.hero-widget{
  position:absolute; right:6%; bottom:9%; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }

.gauge-frame{
  position:relative; width:168px; height:190px; border-radius:22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(160deg,#1c1c1f,#0c0c0e);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 60px -20px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.06);
  padding:12px;
  display:flex; flex-direction:column;
}
.gauge-frame i{
  position:absolute; bottom:-7px; width:12px; height:12px; border-radius:50%;
  background:#0c0c0e; border:1px solid rgba(255,255,255,.15);
}
.gauge-frame i:nth-child(1){ left:16px; }
.gauge-frame i:nth-child(2){ right:16px; }
.gauge-screen{
  flex:1; background:#050506; border-radius:12px; padding:12px 14px;
  display:flex; flex-direction:column; justify-content:space-between;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
.gauge-brand{ display:flex; align-items:center; gap:6px; color:#e7e7ea; }
.pepper-ico{ width:13px; height:13px; fill:var(--red-2); }
.gauge-brand span{ font-size:.62rem; font-weight:700; letter-spacing:.02em; }
.gauge-main{ display:flex; align-items:baseline; gap:4px; }
.gauge-main span{
  font-family:'Oswald', sans-serif; font-size:1.7rem; font-weight:600; color:var(--orange);
  font-variant-numeric:tabular-nums;
}
.gauge-main small{ font-size:.65rem; color:var(--orange); font-weight:600; }
.gauge-row{ display:flex; align-items:center; gap:5px; color:#c9c9ce; font-size:.62rem; }
.turbo-ico{ width:12px; height:12px; fill:#c9c9ce; }
.gauge-row b{ color:#e7e7ea; }
.gauge-foot{ display:flex; justify-content:space-between; font-size:.68rem; color:#9a9aa0; font-weight:600; }
.gauge-caption{ font-size:.72rem; color:var(--gray-dim); letter-spacing:.03em; }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:2;
  width:26px; height:42px; border:1px solid rgba(255,255,255,.25); border-radius:20px;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; width:4px; height:8px; margin-left:-2px;
  background:var(--orange); border-radius:2px; animation:scrollcue 1.8s infinite;
}
@keyframes scrollcue{ 0%{ opacity:1; top:8px;} 70%{ opacity:0; top:22px;} 100%{ opacity:0; top:8px;} }

/* ===================== PILARES ===================== */
.pilares{ padding:110px 0 90px; position:relative; }
.pilares .wrap{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.pilar{
  padding:38px 30px; background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  transition:transform .35s ease, border-color .35s ease, background .35s ease;
}
.pilar:hover{ transform:translateY(-6px); border-color:rgba(232,95,47,.4); background:var(--card-2); }
.pilar-icon{
  width:52px; height:52px; border-radius:14px; margin-bottom:22px;
  display:flex; align-items:center; justify-content:center;
  background:var(--grad);
}
.pilar-icon svg{ width:26px; height:26px; fill:#fff; }
.pilar h3{ font-size:1.4rem; margin-bottom:12px; }
.pilar p{ font-size:.92rem; }

/* ===================== SECTION HEAD ===================== */
.section-head{ text-align:center; max-width:560px; margin:0 auto 56px; }
.section-tag{
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.16em;
  color:var(--red-2); margin-bottom:14px;
}
.section-head h2{ font-size:clamp(2rem,4vw,2.7rem); margin-bottom:14px; }
.section-head p{ font-size:1rem; }

/* ===================== PRODUTOS ===================== */
.produtos{ padding:90px 0 120px; }
.product-flagship{
  display:grid; grid-template-columns:1.1fr 1fr; gap:0; align-items:stretch;
  background:var(--card); border:1px solid var(--line); border-radius:24px; overflow:hidden;
  margin-bottom:32px;
}
.product-flagship-media{ position:relative; min-height:360px; }
.product-flagship-media img{ width:100%; height:100%; object-fit:cover; }
.best-badge{
  position:absolute; top:18px; right:18px; padding:7px 14px; border-radius:8px;
  background:rgba(8,8,10,.72); backdrop-filter:blur(6px);
  border:1px solid rgba(232,95,47,.5); color:var(--orange);
  font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}
.product-flagship-info{ padding:44px; display:flex; flex-direction:column; justify-content:center; gap:18px; }
.product-flagship-info h3{ font-size:2rem; }
.product-flagship-info p{ font-size:1rem; }
.product-features li{
  position:relative; padding-left:26px; font-size:.9rem; color:#d0d0d5; margin-bottom:8px;
}
.product-features li::before{
  content:''; position:absolute; left:0; top:7px; width:14px; height:14px; border-radius:50%;
  background:var(--grad);
}
.price-anchor{
  display:flex; align-items:flex-start; gap:12px; margin:4px 0 0;
  padding:14px 18px; border-radius:14px;
  background:linear-gradient(135deg, rgba(214,54,45,.16), rgba(232,95,47,.10));
  border:1px solid rgba(232,95,47,.35);
}
.price-anchor span{ font-size:.86rem; color:#ffd9c7; line-height:1.5; font-weight:500; }
.ico-anchor{ width:18px; height:18px; flex-shrink:0; margin-top:2px; fill:none; stroke:var(--orange); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.product-buy{ display:flex; align-items:center; gap:20px; margin-top:8px; flex-wrap:wrap; }
.price{ font-family:'Oswald', sans-serif; font-size:1.5rem; font-weight:600; color:var(--white); }
.ico-ext{ width:14px; height:14px; fill:currentColor; opacity:.8; }

.product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.product-card{
  background:var(--card); border:1px solid var(--line); border-radius:20px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .35s ease, border-color .35s ease;
}
.product-card:hover{ transform:translateY(-6px); border-color:rgba(232,95,47,.35); }
.product-card-media{ aspect-ratio:1/1; overflow:hidden; background:#0c0c0e; }
.product-card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .product-card-media img{ transform:scale(1.07); }
.product-card-media--breathe{ position:relative; }
.product-card-media--breathe .lamp-glow{
  content:""; position:absolute; pointer-events:none;
  left:69%; top:25%; width:24%; height:24%; transform:translate(-50%,-50%) scale(.7);
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,110,60,.95) 0%, rgba(255,60,30,.6) 32%, rgba(255,40,20,0) 70%);
  filter:blur(4px);
  will-change:opacity, transform;
  animation:lamp-breathe 3.6s ease-in-out infinite;
}
@keyframes lamp-breathe{
  0%,100%{ opacity:.2; transform:translate(-50%,-50%) scale(.7); }
  50%{ opacity:1; transform:translate(-50%,-50%) scale(1.35); }
}

.product-card-body{ padding:24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-card-body h4{ font-size:1.05rem; letter-spacing:.01em; }
.product-card-body h4 span{ color:var(--gray-dim); font-size:.85rem; text-transform:none; font-family:'Inter',sans-serif; font-weight:500; }
.product-card-body p{ font-size:.85rem; flex:1; }
.product-card .product-buy{ margin-top:4px; flex-direction:column; align-items:stretch; gap:12px; }
.product-card .price{ font-size:1.1rem; }
.product-card .product-buy .btn{ width:100%; }

/* ===================== BASTIDORES ===================== */
.bastidores{ padding:100px 0 110px; background:linear-gradient(180deg, transparent, rgba(214,54,45,.03), transparent); }
.stories-strip{ display:flex; gap:26px; justify-content:center; margin-bottom:56px; flex-wrap:wrap; }
.story-bubble{ display:flex; flex-direction:column; align-items:center; gap:10px; }
.story-ring{
  width:88px; height:88px; border-radius:50%; padding:3px;
  background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s ease;
}
.story-bubble:hover .story-ring{ transform:scale(1.06); }
.story-ring img{ width:100%; height:100%; border-radius:50%; object-fit:cover; border:3px solid var(--bg); }
.story-ring-more{ background:linear-gradient(135deg, var(--card-2), var(--card)); border:1px dashed var(--line); }
.story-ring-more svg{ width:32px; height:32px; fill:var(--gray); }
.story-bubble em{ font-style:normal; font-size:.78rem; font-weight:600; color:var(--gray); letter-spacing:.03em; }

.post-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:70px; }
.post-card{
  position:relative; aspect-ratio:4/5; border-radius:20px; overflow:hidden;
  border:1px solid var(--line);
}
.post-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.post-card:hover img{ transform:scale(1.06); }
.post-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end;
  padding:22px; gap:8px;
  background:linear-gradient(180deg, transparent 40%, rgba(6,6,7,.92) 100%);
}
.ico-sm{ width:20px; height:20px; fill:#fff; opacity:.85; }
.post-overlay p{ color:#f0f0f0; font-size:.92rem; font-weight:500; line-height:1.4; }

.pull-quote{ text-align:center; max-width:780px; margin:0 auto; }
.pull-quote p{
  font-family:'Oswald', sans-serif; text-transform:uppercase; color:var(--white);
  font-size:clamp(1.5rem,3.6vw,2.4rem); font-weight:600; line-height:1.3;
}
.pull-quote span{ color:transparent; background:var(--grad); -webkit-background-clip:text; background-clip:text; }

/* ===================== SOBRE ===================== */
.sobre{ padding:110px 0; }
.sobre-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:70px; align-items:start; }
.sobre-text h2{ font-size:clamp(2rem,4vw,2.6rem); margin:14px 0 26px; }
.sobre-text p{ font-size:1.02rem; margin-bottom:18px; }
.sobre-tags{
  background:var(--card); border:1px solid var(--line); border-radius:20px; padding:32px;
  align-self:stretch;
}
.tag-label{ display:block; font-size:.82rem; color:var(--gray-dim); margin-bottom:18px; font-weight:600; }
.tag-cloud{ display:flex; flex-wrap:wrap; gap:10px; }
.tag-cloud span{
  padding:8px 14px; border-radius:100px; border:1px solid var(--line); font-size:.82rem;
  color:var(--gray); transition:color .25s, border-color .25s;
}
.tag-cloud span:hover{ color:var(--orange); border-color:rgba(232,95,47,.4); }

/* ===================== CONTATO ===================== */
.contato{ padding:0 0 110px; }
.contato-card{
  position:relative; border-radius:28px; overflow:hidden; padding:70px 50px;
  background:
    radial-gradient(circle at 15% 20%, rgba(214,54,45,.35), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(232,95,47,.28), transparent 55%),
    var(--card);
  border:1px solid var(--line);
  text-align:center;
}
.contato-text{ max-width:560px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:18px; }
.contato-text h2{ font-size:clamp(2rem,4.4vw,2.8rem); }
.contato-text p{ font-size:1.02rem; }
.handle{ color:var(--gray-dim); font-size:.85rem; letter-spacing:.03em; }

/* ===================== FOOTER ===================== */
.footer{ padding:38px 0; border-top:1px solid var(--line); }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.brand-footer img{ width:28px; height:28px; }
.footer-links{ display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a{ font-size:.82rem; color:var(--gray-dim); transition:color .2s; }
.footer-links a:hover{ color:var(--white); }
.footer-copy{ font-size:.78rem; color:var(--gray-dim); width:100%; text-align:center; margin-top:8px; }

/* ===================== REVEAL ANIM ===================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width:980px){
  .product-flagship{ grid-template-columns:1fr; }
  .product-flagship-media{ min-height:280px; }
  .sobre-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-widget{ display:none; }
}
@media (max-width:860px){
  .nav-links{
    position:fixed; top:0; right:-100%; height:100svh; width:78%; max-width:320px;
    background:rgba(10,10,12,.98); backdrop-filter:blur(16px);
    flex-direction:column; padding:120px 40px; gap:26px; transition:right .4s ease;
    border-left:1px solid var(--line);
  }
  .nav-links.is-open{ right:0; }
  .nav-links a{ font-size:1.1rem; }
  .burger{ display:flex; }
  .nav-backdrop{
    position:fixed; inset:0; z-index:90; background:rgba(0,0,0,.45);
    opacity:0; pointer-events:none; transition:opacity .35s ease;
  }
  html.menu-open, html.menu-open body{ overflow:hidden; height:100%; }
  html.menu-open .nav-backdrop{ opacity:1; pointer-events:auto; }
  .nav-actions .btn-sm{ display:none; }
  .product-grid{ grid-template-columns:1fr; }
  .pilares .wrap{ grid-template-columns:1fr; }
  .post-grid{ grid-template-columns:1fr; }
  .contato-card{ padding:50px 26px; }
}
@media (max-width:520px){
  .hero{ padding-top:120px; }
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; }
  .product-flagship-info{ padding:28px; }
}
