/* OCA Superfoods — Static stylesheet (mirrors React/Tailwind design) */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --olive: #2f3e2f;
  --olive-deep: #28361f;
  --terracotta: #8c5a2e;
  --sand: #f5f0e8;
  --sand-warm: #ede6d8;
  --wood: #5c4634;
  --gold: #b38b5e;
  --cream: #f8f4ea;
  --border: #d9d1bf;
  --muted-fg: #6d6552;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--olive-deep); line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; }
em { font-style: normal; }
::selection { background: var(--terracotta); color: var(--cream); }

.container { max-width: 1480px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.eyebrow { font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; }
.eyebrow-row { display: inline-flex; align-items: center; gap: 1rem; }
.eyebrow-row .line { display: block; height: 1px; width: 2.5rem; background: currentColor; opacity: .7; }

.text-gold { color: var(--gold); }
.text-terracotta { color: var(--terracotta); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted-fg); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Nav */
.nav { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 50; 
  transition: all .7s ease; 
  color: var(--cream); 
}

.nav.scrolled { 
  background: rgba(248, 244, 234, 0.88); 
  backdrop-filter: blur(12px); 
  border-bottom: 1px solid rgba(0,0,0,.06); 
  color: var(--olive-deep); 
}

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

@media (min-width: 768px) { 
  .nav .row { height: 5rem; } 
}

/* === LOGO MAIOR (FORÇADO) === */
.nav .logo { 
  height: 4.2rem !important; 
  width: auto !important; 
  max-height: 4.2rem !important;
  filter: brightness(0) invert(1); 
  transition: filter .7s; 
}

@media (min-width: 768px) { 
  .nav .logo { 
    height: 5.5rem !important; 
    max-height: 5.5rem !important;
  } 
}

.nav.scrolled .logo { 
  filter: none; 
}

.nav-links { display: none; gap: 2.25rem; }
@media (min-width: 900px) { .nav-links { display: flex; align-items: center; } }
.nav-links a { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.32em; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: currentColor; transition: width .5s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; align-items: center; gap: .75rem; }
@media (min-width: 900px) { .nav-cta { display: flex; } }
.nav-cta .lang { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.32em; opacity: .9; }
.nav-cta .lang:hover { opacity: .7; }
.nav-cta .btn { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.32em; border: 1px solid rgba(255,255,255,.4); padding: .5rem 1rem; transition: all .5s; }
.nav.scrolled .nav-cta .btn { border-color: rgba(40,54,31,.4); }
.nav-cta .btn:hover { background: var(--gold); color: var(--olive-deep); border-color: var(--gold); }
.nav-toggle { display: flex; flex-direction: column; gap: 6px; padding: .5rem; }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; height: 1px; width: 1.5rem; background: currentColor; transition: transform .3s, opacity .3s; }
.nav-mobile { display: none; background: var(--cream); color: var(--olive-deep); border-top: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a, .nav-mobile button { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.32em; text-align: left; }

/* Hero */
.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; color: var(--cream); display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: slowzoom 8s ease-out forwards; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(40,54,31,.55), rgba(40,54,31,.3) 40%, rgba(40,54,31,.85)); }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.hero-content { flex: 1; display: flex; align-items: flex-end; padding-bottom: 4rem; }
@media (min-width:768px){ .hero-content { padding-bottom: 6rem; } }
.hero h1 { font-size: clamp(2.6rem, 7.2vw, 6.4rem); line-height: 1.02; max-width: 56rem; }
.hero p.lede { margin-top: 2rem; max-width: 34rem; font-size: 1rem; color: rgba(248,244,234,.82); line-height: 1.65; }
@media (min-width:768px){ .hero p.lede { font-size: 1.125rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-solid { display: inline-flex; align-items: center; gap: .75rem; background: var(--cream); color: var(--olive-deep); padding: 1rem 1.75rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.32em; transition: background .5s, color .5s; }
.btn-solid:hover { background: var(--gold); color: var(--cream); }
.btn-outline { display: inline-flex; align-items: center; gap: .75rem; border: 1px solid rgba(248,244,234,.6); padding: 1rem 1.75rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.32em; transition: background .5s; }
.btn-outline:hover { background: rgba(248,244,234,.1); }
.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 1.5rem; gap: 2rem; }
.scroll-tag { display: none; flex-direction: column; align-items: flex-end; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(248,244,234,.7); }
@media (min-width:768px){ .scroll-tag { display: flex; } .scroll-tag .l { margin-top: .5rem; height: 2.5rem; width: 1px; background: rgba(248,244,234,.5); } }
.xv { display: block; height: 1rem; width: 12rem; color: rgba(248,244,234,.55); }
@media (min-width:768px){ .xv { width: 18rem; } }
.xv-wide { width: 100%; height: 1.25rem; color: rgba(248,244,234,.2); }

/* Sections */
.section { padding: 7rem 0; }
@media (min-width:768px){ .section { padding: 10rem 0; } }
.section h2 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
.s-cream { background: var(--cream); color: var(--olive-deep); }
.s-olive { background: var(--olive-deep); color: var(--cream); position: relative; overflow: hidden; }
.s-sand  { background: var(--sand); color: var(--olive-deep); }
.s-wood  { background: var(--wood); color: var(--cream); position: relative; overflow: hidden; }

/* Products */
.products-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 4rem; }
@media (min-width: 768px){ .products-head { margin-bottom: 6rem; } }
.products-head h2 { max-width: 48rem; }
.products-head p { max-width: 22rem; font-size: .9rem; color: var(--muted-fg); line-height: 1.65; }
.product-hero { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 7rem; }
@media (min-width: 1024px){ .product-hero { grid-template-columns: 7fr 5fr; gap: 4rem; margin-bottom: 10rem; } }
.product-hero .img-wrap { position: relative; overflow: hidden; background: var(--olive); }
.product-hero img { width: 100%; height: 60vh; object-fit: cover; transition: transform 1.4s ease-out; }
@media (min-width:768px){ .product-hero img { height: 80vh; } }
.product-hero .img-wrap:hover img { transform: scale(1.04); }
.product-hero .tag { position: absolute; top: 1.5rem; left: 1.5rem; color: var(--cream); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.32em; }
.product-hero .info { display: flex; flex-direction: column; justify-content: flex-end; }
.product-hero h3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.product-hero .desc { margin-top: 1.5rem; max-width: 28rem; color: var(--muted-fg); line-height: 1.65; }
.product-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 28rem; }
.product-stats dt { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(92,70,52,.7); }
.product-stats dd { font-family: var(--font-serif); font-size: 1.5rem; margin-top: .25rem; }
.link-arrow { margin-top: 2.5rem; align-self: flex-start; display: inline-flex; gap: .75rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.32em; border-bottom: 1px solid rgba(40,54,31,.4); padding-bottom: .5rem; transition: gap .5s; }
.link-arrow:hover { gap: 1.25rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width:1024px){ .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.product-card .card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand-warm); }
.product-card .card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease-out; }
.product-card:hover .card-img img { transform: scale(1.06); }
.product-card .card-img .num { position: absolute; top: .75rem; left: 1rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--cream); text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.product-card h4 { margin-top: 1.25rem; font-size: 1.25rem; }
@media (min-width:768px){ .product-card h4 { font-size: 1.5rem; } }
.product-card .origin { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(92,70,52,.7); margin-top: .25rem; }

/* Marquee */
.marquee-wrap { margin-top: 6rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 0; overflow: hidden; }
@media (min-width:768px){ .marquee-wrap { margin-top: 9rem; } }
.marquee { display: flex; gap: 4rem; white-space: nowrap; animation: marquee 40s linear infinite; font-family: var(--font-serif); font-size: 1.5rem; color: rgba(92,70,52,.8); }
@media (min-width:768px){ .marquee { font-size: 2.25rem; } }
.marquee span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee .sep { color: var(--terracotta); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Principles */
.section-head { max-width: 48rem; margin-bottom: 5rem; }
@media (min-width:768px){ .section-head { margin-bottom: 7rem; } }
.principles-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(248,244,234,.1); }
@media (min-width: 768px){ .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .principles-grid { grid-template-columns: repeat(4, 1fr); } }
.principle { background: var(--olive-deep); padding: 2rem; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; transition: background .7s; }
@media (min-width:768px){ .principle { padding: 2.5rem; } }
.principle:hover { background: var(--olive); }
.principle-head { display: flex; align-items: flex-start; justify-content: space-between; }
.principle-head .n { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--gold); }
.principle-head .dot { height: 2rem; width: 2rem; border: 1px solid rgba(248,244,234,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(248,244,234,.6); transition: all .5s; }
.principle:hover .principle-head .dot { border-color: var(--gold); color: var(--gold); }
.principle h3 { font-size: 1.5rem; margin-bottom: .75rem; }
@media (min-width:768px){ .principle h3 { font-size: 1.7rem; } }
.principle p { font-size: .875rem; color: rgba(248,244,234,.7); line-height: 1.6; }

/* Origin */
.origin-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width:1024px){ .origin-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.origin-col-left { position: sticky; top: 7rem; }
@media (max-width:1023px){ .origin-col-left { position: static; } }
.origin-grid h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }
.origin-stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 28rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.origin-stats dt { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1; color: var(--olive); }
.origin-stats dd { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(92,70,52,.7); margin-top: .75rem; }
.origin-images { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
@media (min-width:768px){ .origin-images { gap: 1.5rem; } }
.origin-images .big { grid-column: 1 / -1; overflow: hidden; }
.origin-images .big img { width: 100%; height: 60vh; object-fit: cover; }
.origin-images .small { grid-column: span 7; margin-top: 1.5rem; overflow: hidden; }
.origin-images .small img { width: 100%; height: 44vh; object-fit: cover; }
.origin-quote { grid-column: span 5; margin-top: 1.5rem; display: flex; align-items: flex-end; }
.origin-quote blockquote { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.3; }
@media (min-width:768px){ .origin-quote blockquote { font-size: 1.5rem; } }
.origin-quote footer { margin-top: 1rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(92,70,52,.7); }

/* Mulheres */
.mulheres-stats { margin-top: 5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(248,244,234,.1); border-top: 1px solid rgba(248,244,234,.15); border-bottom: 1px solid rgba(248,244,234,.15); }
@media (min-width:768px){ .mulheres-stats { grid-template-columns: repeat(4, 1fr); margin-top: 7rem; } }
.mulheres-stats .cell { background: var(--wood); padding: 3rem 1.5rem; text-align: center; }
.mulheres-stats .n { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: var(--gold); }
.mulheres-stats .l { margin-top: 1rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(248,244,234,.7); }
.mulheres-3 { margin-top: 5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 64rem; }
@media (min-width:768px){ .mulheres-3 { grid-template-columns: repeat(3, 1fr); } }
.mulheres-3 .title { color: var(--gold); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.32em; margin-bottom: .75rem; }
.mulheres-3 p { color: rgba(248,244,234,.8); line-height: 1.6; }
.xv-band { position: absolute; left: 0; right: 0; height: 1.5rem; color: rgba(248,244,234,.15); }
.xv-band.top { top: 2.5rem; } .xv-band.bot { bottom: 2.5rem; }

/* Global Map */
.map-wrap { position: relative; width: 100%; aspect-ratio: 4/3; background: var(--sand); border: 1px solid var(--border); overflow: hidden; }
@media (min-width:768px){ .map-wrap { aspect-ratio: 16/8; } }
.map-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; color: rgba(92,70,52,.3); }
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; transform: translate(-50%,-50%); }
.map-pin .dot { display: block; height: .625rem; width: .625rem; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px rgba(140,90,46,.2); animation: pulse 2s infinite; }
@media (min-width:768px){ .map-pin .dot { height: .75rem; width: .75rem; } }
.map-pin .lbl { margin-top: .5rem; text-align: center; max-width: 90px; }
@media (min-width:768px){ .map-pin .lbl { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); margin-top: 0; text-align: left; max-width: none; white-space: nowrap; } }
.map-pin .code { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(92,70,52,.6); line-height: 1; }
@media (min-width:768px){ .map-pin .code { font-size: 0.68rem; } }
.map-pin .name { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--olive-deep); line-height: 1.2; }
@media (min-width:768px){ .map-pin .name { font-size: 0.68rem; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

.global-foot { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end; }
@media (min-width:768px){ .global-foot { grid-template-columns: 1fr 1fr; } }
.global-foot p { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.3; max-width: 36rem; }
@media (min-width:768px){ .global-foot p { font-size: 1.875rem; } }
.global-foot a { justify-self: start; }
@media (min-width:768px){ .global-foot a { justify-self: end; } }

/* Supplier */
.supplier { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width:1024px){ .supplier { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.supplier h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.supplier .desc { margin-top: 2rem; color: rgba(248,244,234,.75); max-width: 28rem; line-height: 1.6; font-size: 1.05rem; }
.supplier-form { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:768px){ .supplier-form { grid-template-columns: 1fr 1fr; } }
.supplier-form .full { grid-column: 1 / -1; }
.supplier-form label { display: block; }
.supplier-form label > span { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(248,244,234,.6); margin-bottom: .5rem; }
.supplier-form input, .supplier-form select, .supplier-form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(248,244,234,.3); outline: none;
  padding: .75rem 0; color: var(--cream); transition: border-color .3s;
}
.supplier-form input:focus, .supplier-form select:focus, .supplier-form textarea:focus { border-color: var(--gold); }
.supplier-form textarea { resize: none; }
.supplier-form select option { background: var(--olive-deep); color: var(--cream); }
.supplier-form .submit { display: inline-flex; align-items: center; gap: .75rem; background: var(--gold); color: var(--olive-deep); padding: 1rem 1.75rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.32em; transition: background .5s; }
.supplier-form .submit:hover { background: var(--cream); }
.form-msg { margin-top: 1rem; padding: 1rem; font-size: 0.85rem; }
.form-msg.ok { background: rgba(179,139,94,.15); color: var(--gold); }
.form-msg.err { background: rgba(200,80,60,.15); color: #e88; }

/* Footer */
.foot { background: var(--olive-deep); color: var(--cream); padding: 6rem 0 2.5rem; }
@media (min-width:768px){ .foot { padding-top: 8rem; } }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width:1024px){ .foot-grid { grid-template-columns: 6fr 2fr 2fr 2fr; } }
.foot-logo { height: 8rem; width: auto; filter: brightness(0) invert(1); }
@media (min-width:768px){ .foot-logo { height: 11rem; } }
.foot .tag { margin-top: 2rem; font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: rgba(248,244,234,.7); max-width: 28rem; }
.foot .ona { margin-top: .75rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(248,244,234,.6); }
.foot h4 { font-family: var(--font-sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--gold); margin-bottom: 1.25rem; font-weight: 500; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; font-size: 0.875rem; }
.foot a:hover { color: var(--gold); }
.foot-bottom { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(248,244,234,.15); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(248,244,234,.6); }
@media (min-width:768px){ .foot-bottom { flex-direction: row; } }

/* Sticky header on scroll on lighter backgrounds — keep text legible */
.nav:not(.scrolled) .nav-cta .btn { color: var(--cream); }
