/* ============================================================
   NATURA FOOD — natural, warm, professional one-page design
   Palette taken directly from the logo
   ============================================================ */
:root{
  --green:        #235E3A;
  --green-dark:   #163D26;
  --green-light:  #4C8A5E;
  --green-tint:   #EAF2EC;
  --berry:        #8C2F45;
  --berry-light:  #C0546B;
  --cream:        #FAF7F0;
  --text-dark:    #1C2620;
  --text-muted:   #5B6960;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 18px;
  --shadow-soft: 0 8px 30px rgba(28, 38, 32, .08);
  --shadow-lift: 0 14px 40px rgba(28, 38, 32, .14);
  --header-h: 76px;
}

/* ---------- Google Translate widget (hidden, driven via flag switch) ---------- */
.gt-hidden{ display:none !important; }
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd{ display:none !important; }
body{ top:0 !important; position:static !important; }

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

html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body{
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: var(--green); text-decoration:none; }
ul,ol{ list-style:none; }

.container{ width:min(1160px, 92%); margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family: var(--font-head); font-weight:600; font-size:.95rem;
  padding:.75rem 1.6rem; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition: all .25s ease; text-align:center;
}
.btn-lg{ padding:.95rem 2rem; font-size:1rem; }
.btn-primary{ background:var(--green); color:#fff; }
.btn-primary:hover{ background:var(--green-dark); transform:translateY(-2px); box-shadow:var(--shadow-lift); }
.btn-berry{ background:var(--berry); color:#fff; }
.btn-berry:hover{ background:var(--berry-light); transform:translateY(-2px); box-shadow:var(--shadow-lift); }
.btn-outline-light{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.75); backdrop-filter:blur(3px); }
.btn-outline-light:hover{ background:#fff; color:var(--green-dark); transform:translateY(-2px); }
.btn-outline{ background:transparent; color:var(--green); border-color:var(--green); }
.btn-outline:hover{ background:var(--green); color:#fff; transform:translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--header-h);
  background:rgba(250,247,240,.92);
  backdrop-filter:blur(10px);
  transition: box-shadow .3s ease, background .3s ease;
}
#site-header.scrolled{ box-shadow:0 4px 24px rgba(22,61,38,.12); background:rgba(250,247,240,.98); }

.header-inner{ height:100%; display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }

.brand-logo{ display:flex; align-items:center; gap:.65rem; }
.logo-mark{ height:42px; width:auto; display:block; }
.logo-text{ display:flex; flex-direction:column; line-height:1.15; }
.logo-text strong{ font-family:var(--font-head); font-weight:800; font-size:1.15rem; letter-spacing:.06em; color:var(--green-dark); }
.logo-text small{ font-size:.68rem; color:var(--text-muted); letter-spacing:.04em; }

.nav-list{ display:flex; gap:1.7rem; }
.nav-link{
  font-family:var(--font-head); font-weight:600; font-size:.88rem;
  color:var(--text-dark); position:relative; padding:.35rem 0; letter-spacing:.01em;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; height:2.5px; width:0;
  background:var(--berry); border-radius:2px; transition:width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after{ width:100%; }
.nav-link.active{ color:var(--green); }

.header-actions{ display:flex; align-items:center; gap:1rem; }
.lang-switch-new{ position:relative; }

.lang-current-btn{
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--green-tint); border:1px solid rgba(35,94,58,.18); border-radius:999px;
  padding:.4rem .7rem; cursor:pointer;
  transition:border-color .2s, background .2s;
}
.lang-current-btn:hover{ border-color:var(--green); }
.lang-current-btn img{ width:20px; height:20px; border-radius:50%; object-fit:cover; display:block; }
.lang-chevron{ color:var(--text-muted); transition:transform .2s; }
.lang-current-btn[aria-expanded="true"] .lang-chevron{ transform:rotate(180deg); }

.lang-dropdown{
  position:absolute; top:calc(100% + 10px); right:0;
  min-width:170px;
  background:#fff; border:1px solid rgba(35,94,58,.14); border-radius:14px;
  box-shadow:0 16px 40px rgba(22,61,38,.18);
  padding:6px; display:flex; flex-direction:column; gap:2px;
  opacity:0; pointer-events:none; transform:translateY(-8px);
  transition:opacity .2s, transform .2s;
  z-index:200;
}
.lang-dropdown.open{ opacity:1; pointer-events:all; transform:translateY(0); }

.lang-opt{
  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:8px;
  background:transparent; border:none; cursor:pointer; text-align:left;
  font-family:var(--font-body); font-weight:600; font-size:.85rem; color:var(--text-muted);
  transition:background .15s, color .15s;
}
.lang-opt:hover{ background:var(--green-tint); color:var(--text-dark); }
.lang-opt.active{ color:var(--berry); }
.lang-opt img{ width:18px; height:18px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.btn-header{ padding:.55rem 1.3rem; font-size:.85rem; }

#menu-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none;
  cursor:pointer; padding:6px;
}
#menu-toggle span{ width:24px; height:2.5px; background:var(--green-dark); border-radius:2px; transition:all .3s ease; }
#menu-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
#menu-toggle.open span:nth-child(2){ opacity:0; }
#menu-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero-section{
  position:relative; min-height:100vh; min-height:100svh;
  display:flex; align-items:center;
  padding:calc(var(--header-h) + 3rem) 0 5rem;
  color:#fff; overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.04);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(22,61,38,.82) 0%, rgba(22,61,38,.55) 45%, rgba(28,38,32,.25) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:760px; }
.hero-label{
  display:inline-block; font-family:var(--font-head); font-weight:600; font-size:.78rem;
  letter-spacing:.18em; text-transform:uppercase;
  background:rgba(140,47,69,.85); padding:.45rem 1.1rem; border-radius:999px; margin-bottom:1.4rem;
}
.hero-title{
  font-family:var(--font-head); font-weight:800;
  font-size:clamp(2.2rem, 5vw, 3.6rem); line-height:1.12; margin-bottom:1.2rem;
  text-shadow:0 2px 18px rgba(0,0,0,.25);
}
.hero-desc{ font-size:clamp(1rem, 1.6vw, 1.18rem); font-weight:300; max-width:600px; color:#f0f5f0; margin-bottom:2rem; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.9rem; margin-bottom:1.6rem; }
.hero-trust{ font-size:.9rem; color:#d8e8dc; display:flex; align-items:center; gap:.55rem; }
.hero-trust i{ color:#9fd0ac; }

.hero-scroll-hint{
  position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%);
  color:rgba(255,255,255,.85); font-size:1.1rem; z-index:2;
  animation:bounce 2.2s infinite;
}
@keyframes bounce{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,8px);} }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section{ padding:5.5rem 0; }
.section-tint{ background:var(--green-tint); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 3.2rem; }
.section-label{
  font-family:var(--font-head); font-weight:700; font-size:.75rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--berry); margin-bottom:.6rem;
}
.section-label.light{ color:var(--berry-light); }
.section-title{
  font-family:var(--font-head); font-weight:800;
  font-size:clamp(1.7rem, 3.4vw, 2.4rem); color:var(--green-dark); line-height:1.2;
}
.section-dark .section-title{ color:#fff; }
.section-body{ color:var(--text-muted); margin-top:1.1rem; font-size:1.02rem; }

/* Reveal on scroll */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform:none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:3.5rem; align-items:center; }
.about-media{ position:relative; }
.about-media img{
  width:100%; height:440px; object-fit:cover;
  border-radius:var(--radius); box-shadow:var(--shadow-lift);
}
.about-badge{
  position:absolute; bottom:1.1rem; left:1.1rem;
  display:flex; align-items:center; gap:.55rem;
  background:rgba(250,247,240,.95); color:var(--green-dark);
  font-family:var(--font-head); font-weight:600; font-size:.82rem;
  padding:.55rem 1rem; border-radius:999px; box-shadow:var(--shadow-soft);
}
.about-badge i{ color:var(--berry); }
.about-stats{ display:flex; gap:2.2rem; margin-top:2.2rem; flex-wrap:wrap; }
.about-stats li{ display:flex; flex-direction:column; }
.about-stats strong{
  font-family:var(--font-head); font-weight:800; font-size:1.7rem; color:var(--green);
}
.about-stats span{ font-size:.82rem; color:var(--text-muted); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1.6rem;
}
.product-card{
  background:#fff; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-soft); transition:transform .3s ease, box-shadow .3s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.product-media{ height:210px; overflow:hidden; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .product-media img{ transform:scale(1.06); }
.product-body{ padding:1.4rem 1.4rem 1.6rem; }
.product-body h3{
  font-family:var(--font-head); font-weight:700; font-size:1.15rem; color:var(--green-dark);
  margin-bottom:.5rem; position:relative; padding-bottom:.55rem;
}
.product-body h3::after{
  content:""; position:absolute; left:0; bottom:0; width:34px; height:3px;
  background:var(--berry-light); border-radius:2px;
}
.product-body p{ font-size:.9rem; color:var(--text-muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-timeline{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.8rem;
  counter-reset:step; position:relative;
}
.process-timeline::before{
  content:""; position:absolute; top:88px; left:6%; right:6%;
  border-top:2px dashed var(--green-light); opacity:.45; z-index:0;
}
.process-step{ text-align:center; position:relative; z-index:1; }
.step-media{
  position:relative; width:176px; height:176px; margin:0 auto 1.3rem;
}
.step-media img{
  width:100%; height:100%; object-fit:cover; border-radius:50%;
  border:5px solid #fff; box-shadow:var(--shadow-soft);
}
.step-num{
  position:absolute; bottom:4px; right:4px;
  width:40px; height:40px; border-radius:50%;
  background:var(--berry); color:#fff;
  font-family:var(--font-head); font-weight:800; font-size:1.05rem;
  display:flex; align-items:center; justify-content:center;
  border:3px solid var(--cream);
}
.process-step h3{ font-family:var(--font-head); font-weight:700; font-size:1.08rem; color:var(--green-dark); margin-bottom:.5rem; }
.process-step p{ font-size:.88rem; color:var(--text-muted); max-width:250px; margin:0 auto; }

/* ============================================================
   CAPACITY (dark)
   ============================================================ */
.section-dark{
  background:linear-gradient(135deg, var(--green-dark) 0%, var(--green) 90%);
  color:#e8f1ea;
}
.capacity-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:3.5rem; align-items:center; }
.section-dark .section-body{ color:#c6d8cb; }
.capacity-list{ margin-top:1.8rem; display:flex; flex-direction:column; gap:.9rem; }
.capacity-list li{ display:flex; align-items:center; gap:.85rem; font-size:.95rem; }
.capacity-list i{
  width:38px; height:38px; flex:0 0 38px; border-radius:10px;
  background:rgba(255,255,255,.12); color:#aed6b8;
  display:flex; align-items:center; justify-content:center; font-size:.95rem;
}
.capacity-media img{
  width:100%; height:420px; object-fit:cover;
  border-radius:var(--radius); box-shadow:0 18px 50px rgba(0,0,0,.35);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; }
.why-card{
  background:#fff; border-radius:var(--radius); padding:2rem 1.5rem;
  box-shadow:var(--shadow-soft); text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
}
.why-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.why-icon{
  width:62px; height:62px; margin:0 auto 1.1rem; border-radius:18px;
  background:var(--green-tint); color:var(--green);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.why-card:nth-child(even) .why-icon{ background:#f7ecef; color:var(--berry); }
.why-card h3{ font-family:var(--font-head); font-weight:700; font-size:1.02rem; color:var(--green-dark); margin-bottom:.5rem; }
.why-card p{ font-size:.87rem; color:var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:1.2fr .9fr; gap:2.5rem; align-items:start; }
.contact-form{
  background:#fff; border-radius:var(--radius); padding:2.2rem;
  box-shadow:var(--shadow-soft); display:flex; flex-direction:column; gap:1.2rem;
}
.form-field{ display:flex; flex-direction:column; gap:.45rem; }
.form-field label{ font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--green-dark); }
.form-field input, .form-field textarea{
  font-family:var(--font-body); font-size:.95rem; color:var(--text-dark);
  padding:.8rem 1rem; border:1.5px solid #dde6df; border-radius:12px;
  background:var(--cream); transition:border-color .2s, box-shadow .2s; resize:vertical;
}
.form-field input:focus, .form-field textarea:focus{
  outline:none; border-color:var(--green-light); box-shadow:0 0 0 3px rgba(76,138,94,.16);
}
.contact-form .btn{ align-self:flex-start; }
.form-status{ font-size:.9rem; min-height:1.2em; }
.form-status.ok{ color:var(--green); }
.form-status.err{ color:var(--berry); }

.contact-info{
  background:var(--green-tint); border-radius:var(--radius); padding:2.2rem;
  box-shadow:var(--shadow-soft);
}
.contact-list{ display:flex; flex-direction:column; gap:1.4rem; }
.contact-list li{ display:flex; gap:1rem; align-items:flex-start; }
.contact-icon{
  width:46px; height:46px; flex:0 0 46px; border-radius:14px;
  background:#fff; color:var(--berry);
  display:flex; align-items:center; justify-content:center; font-size:1.05rem;
  box-shadow:var(--shadow-soft);
}
.contact-list strong{ display:block; font-family:var(--font-head); font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; color:var(--text-muted); margin-bottom:.15rem; }
.contact-list a, .contact-list span{ color:var(--text-dark); font-weight:500; }
.contact-list a:hover{ color:var(--green); }

.contact-social{ margin-top:2rem; padding-top:1.6rem; border-top:1.5px solid rgba(35,94,58,.15); }
.contact-social p{ font-family:var(--font-head); font-weight:600; font-size:.88rem; color:var(--green-dark); margin-bottom:.8rem; }
.social-btns{ display:flex; gap:.7rem; }
.social-btns a{
  width:44px; height:44px; border-radius:50%;
  background:var(--green); color:#fff; font-size:1.05rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .25s, transform .25s;
}
.social-btns a:hover{ background:var(--berry); transform:translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer{ background:var(--green-dark); color:#b9cec0; padding:2.6rem 0; }
.footer-inner{ text-align:center; display:flex; flex-direction:column; gap:.75rem; align-items:center; }
.footer-brand strong{ font-family:var(--font-head); font-weight:800; letter-spacing:.08em; color:#fff; font-size:1.1rem; }
.footer-domain{ margin-left:.7rem; color:#9fd0ac; font-size:.9rem; }
.footer-contact{ font-size:.88rem; }
.footer-contact i{ color:#9fd0ac; }
.footer-copy{ font-size:.8rem; color:#8aa593; }

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.bottom-nav{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:300;
  align-items:stretch;
  background:rgba(250,247,240,.96);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(35,94,58,.14);
  box-shadow:0 -8px 24px rgba(22,61,38,.1);
  padding-bottom:env(safe-area-inset-bottom);
}
.bottom-nav-item{
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.2rem; padding:.6rem .2rem .5rem;
  border:none; background:none; cursor:pointer;
  text-decoration:none; color:var(--text-muted);
  font-family:var(--font-body); font-size:.68rem; font-weight:600;
}
.bottom-nav-item i{ font-size:1.15rem; color:var(--green); }
.bottom-nav-item:active{ color:var(--text-dark); }

.bottom-nav-social-wrap{ position:relative; flex:1; display:flex; }
.bottom-nav-social-wrap .bottom-nav-item{ width:100%; }

.bottom-nav-social-menu{
  position:absolute; bottom:calc(100% + 12px); right:.4rem;
  display:flex; gap:.5rem;
  background:#fff; border:1px solid rgba(35,94,58,.14); border-radius:999px;
  padding:.5rem .7rem;
  box-shadow:0 12px 30px rgba(22,61,38,.18);
  opacity:0; pointer-events:none; transform:translateY(8px);
  transition:opacity .2s, transform .2s;
}
.bottom-nav-social-menu.open{ opacity:1; pointer-events:all; transform:translateY(0); }
.bottom-nav-social-menu a{
  width:36px; height:36px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--green-tint); color:var(--text-dark); font-size:.95rem; text-decoration:none;
  transition:background .2s, color .2s;
}
.bottom-nav-social-menu a:hover{ background:var(--berry); color:#fff; }

/* ============================================================
   MODALS (quick-action confirm)
   ============================================================ */
body.modal-open{ overflow:hidden; }

.modal-overlay{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  padding:5vh 1rem;
  background:rgba(22,61,38,.55);
  backdrop-filter:blur(4px);
  opacity:0; transition:opacity .22s ease;
}
.modal-overlay.open{ opacity:1; }
.modal-overlay[hidden]{ display:none; }

.modal{
  position:relative;
  width:min(560px,100%);
  max-height:88vh; overflow-y:auto;
  background:#fff; border-radius:var(--radius);
  box-shadow:0 30px 60px rgba(22,61,38,.35);
  transform:translateY(16px) scale(.98);
  transition:transform .25s ease;
}
.modal-overlay.open .modal{ transform:translateY(0) scale(1); }

.modal-close{
  position:absolute; top:.9rem; right:.9rem; z-index:2;
  width:36px; height:36px; border-radius:50%; border:none;
  background:rgba(22,61,38,.06); color:var(--text-dark);
  font-size:1.3rem; line-height:1; cursor:pointer;
  display:grid; place-items:center;
  transition:background .2s;
}
.modal-close:hover{ background:rgba(22,61,38,.14); }

.modal-actions{ display:flex; flex-wrap:wrap; gap:.8rem; }
.modal-actions .btn{ flex:1 1 auto; justify-content:center; }

.modal-confirm{ width:min(360px,100%); padding:2rem 1.6rem 1.8rem; text-align:center; }
.modal-confirm-icon{
  display:inline-grid; place-items:center;
  width:56px; height:56px; border-radius:50%; margin-bottom:1rem;
  background:var(--green-tint); color:var(--green); font-size:1.4rem;
}
.modal-confirm p{ font-size:1.02rem; color:var(--text-dark); font-weight:600; margin-bottom:1.5rem; }
.modal-confirm .modal-actions{ gap:.7rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .products-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .process-timeline{ grid-template-columns:repeat(2,1fr); row-gap:2.6rem; }
  .process-timeline::before{ display:none; }
}

@media (max-width: 880px){
  .bottom-nav{ display:flex; }
  #site-footer{ padding-bottom:calc(2.6rem + 64px + env(safe-area-inset-bottom)); }

  .nav-list{
    position:fixed; top:var(--header-h); left:0; right:0;
    flex-direction:column; gap:0;
    background:var(--cream); box-shadow:0 18px 30px rgba(22,61,38,.14);
    max-height:0; overflow:hidden; transition:max-height .35s ease;
  }
  #main-nav.open .nav-list{ max-height:340px; }
  .nav-list li{ border-bottom:1px solid rgba(35,94,58,.08); }
  .nav-link{ display:block; padding:1rem 6%; }
  .nav-link::after{ display:none; }
  #menu-toggle{ display:flex; }
  .btn-header{ display:none; }

  .about-grid, .capacity-grid, .contact-grid{ grid-template-columns:1fr; gap:2.4rem; }
  .about-media img{ height:320px; }
  .capacity-media img{ height:300px; }
  .capacity-grid .capacity-media{ order:-1; }
  .section{ padding:4rem 0; }
}

@media (max-width: 560px){
  .products-grid, .why-grid, .process-timeline{ grid-template-columns:1fr; }
  .hero-cta .btn{ width:100%; }
  .about-stats{ gap:1.4rem; }
  .contact-form, .contact-info{ padding:1.6rem; }
  .step-media{ width:150px; height:150px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-scroll-hint{ animation:none; }
}
