
:root{
  --nav:#060a60;
  --teal:#0c7f86;
  --text:#0d2b3a;
  --muted:#5b6b76;
  --bg:#ffffff;
  --card:#ffffff;
  --shadow:0 18px 45px rgba(12,127,134,.22);
  --radius:28px;
}

*{box-sizing:content-box;}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* NAV */
.site-header{
  background:var(--nav);
  color:#fff;
}
.nav-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}
.brand .brand-name{
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size:34px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand svg{height:56px;width:56px}

.nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:18px;
}
.nav a{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.nav a:hover{opacity:1}
.nav .active{border-bottom:3px solid rgba(255,255,255,.9); padding-bottom:8px}

.dropdown{position:relative}
.dropdown > button{
  background:transparent;
  border:0;
  color:#fff;
  font:inherit;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.95;
}
.dropdown > button:hover{opacity:1}
.caret{display:inline-block; width:0; height:0; border-left:6px solid transparent; border-right:6px solid transparent; border-top:7px solid #fff; transform:translateY(1px)}
.dropdown-menu{
  position:absolute;
  top:44px;
  right:-10px;
  background:#fff;
  color:var(--text);
  min-width:240px;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  padding:10px;
  display:none;
}
.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:var(--text);
  text-decoration:none;
  font-size:15px;
}
.dropdown-menu a:hover{background:rgba(12,127,134,.10)}
.dropdown.open .dropdown-menu{display:block}

/* Mobile menu */
.mobile-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
  border-radius:12px;
  color:#fff;
  padding:10px 12px;
  cursor:pointer;
}
.mobile-panel{
  display:none;
  padding:0 24px 18px;
}
.mobile-panel a, .mobile-panel button{
  display:block;
  width:100%;
  text-align:left;
  padding:14px 12px;
  margin:10px 0;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-size:16px;
}
.mobile-panel .sub a{background:rgba(255,255,255,.03); margin:8px 0}
.mobile-panel .sub{padding-left:10px}
.mobile-panel.open{display:block}

/* Layout */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.section{padding:72px 0}
.center{text-align:center;}
.h1-hero{
  font-size:64px;
  font-weight:600;
  color:#fff;
  line-height:1.05;
  letter-spacing:.5px;
}
.hero{
  height:640px;
  position:relative;
  overflow:hidden;
}
.hero .bg{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(6,10,96,.60), rgba(6,10,96,.60)),
    url('../img/hero.jpg') center/cover no-repeat;
}
.hero .content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.hero .logo-big{
  width:90px;
  height:90px;
  opacity:.92;
  background: url('../img/logo-big.png') center center / contain no-repeat;
filter: brightness(0) invert(1);
}
.section-title{
  font-size:56px;
  font-weight:600;
  color:#010537;
  margin:0 0 10px;
}
.section-sub{
  font-size:18px;
  color:var(--teal);
  margin:0 auto 34px;
  max-width:760px;
}

/* Pills/cards section (Packaging etc.) */
.pill{
  border-radius:42px;
  overflow:hidden;
  height:200px;
  position:relative;
  margin:28px auto;
  max-width:980px;
}
.pill .bg{
  position:absolute; inset:0;
  background:
   linear-gradient(0deg, rgba(6,10,96,.55), rgba(6,10,96,.55)),
   url('../img/pill.jpg') center/cover no-repeat;
}
.pill:nth-child(2) .bg{background:
   linear-gradient(0deg, rgba(6,10,96,.55), rgba(6,10,96,.55)),
   url('../img/pill2.jpg') center/cover no-repeat;}
.pill:nth-child(3) .bg{background:
   linear-gradient(0deg, rgba(6,10,96,.55), rgba(6,10,96,.55)),
   url('../img/pill3.jpg') center/cover no-repeat;}
.pill .content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px 28px;
  color:#fff;
}
.pill h3{
  font-size:56px;
  margin:0;
  font-weight:700;
}
.pill p{
  margin:10px 0 0;
  font-size:22px;
  max-width:860px;
  line-height:1.25;
}

/* Certifications row */
.cert-row{
  display:flex;
  justify-content:center;
  gap:46px;
  align-items:center;
  margin-top:28px;
  flex-wrap:wrap;
}
.cert-row img{
  height:250px;
  opacity:.85;
  filter:grayscale(0);
}
.big-label{
  font-size:56px;
  font-weight:600;
  color:var(--nav);
  margin-top:54px;
}

/* Product carousel */
.carousel{
  max-width:1120px;
  margin:0 auto;
  position:relative;
}
.slides{
  display:flex;
  gap:36px;
  overflow:hidden;
  justify-content:center;
  padding:14px 0 4px;
}
.slide{
  width:290px;
  height:320px;
  border-radius:18px;
  overflow:hidden;
  background:#f4f6fb;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.slide img{width:100%; height:100%; object-fit:cover}
.dots{
  display:flex; justify-content:center; gap:10px; margin-top:18px;
}
.dot{
  width:8px; height:8px; border-radius:999px; background:#bfc5cd;
}
.dot.active{background:#222}

/* Forms card */
.form-shell{
  max-width:980px;
  margin:0 auto;
  border-radius:34px;
  background:#f6fbfc;
  box-shadow:var(--shadow);
  padding:38px 42px;
}
.input{
  width:100%;
  padding:18px 18px;
  border-radius:999px;
  border:1.6px solid rgba(12,127,134,.85);
  font-size:18px;
  outline:none;
  margin:0 0 22px;
  background:#fff;
}
.btn{
  width:100%;
  background:var(--teal);
  color:#fff;
  border:0;
  border-radius:999px;
  padding:18px 18px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
}
.btn:hover{filter:brightness(.98)}
.note{
  margin-top:22px;
  color:#7a8a95;
  text-align:center;
}
.result-pill{
  margin-top:18px;
  text-align:center;
  font-size:20px;
  font-weight:700;
  color:var(--nav);
}

/* Footer */
.site-footer{
  background:var(--nav);
  color:#fff;
  padding:70px 0;
  margin-top:80px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:60px;
  align-items:start;
}
.footer-brand{
  display:flex; align-items:center; gap:14px;
  font-family:'Georgia','Times New Roman',serif;
  font-size:34px; font-weight:700;
}
.footer-brand svg{width:54px;height:54px}
.footer-text{
  margin-top:18px;
  font-size:18px;
  line-height:1.7;
  opacity:.95;
}
.fast-links-title{
  font-size:46px;
  font-weight:500;
  margin:0 0 22px;
  text-align:center;
}
.fast-links{
  display:flex;
  justify-content:center;
  gap:34px;
  flex-wrap:wrap;
}
.fast-links a{
  color:#fff; text-decoration:none; font-size:18px; opacity:.95;
  padding-bottom:10px;
}
.fast-links a.active{
  border-bottom:3px solid rgba(255,255,255,.9);
}
@media (max-width: 980px){
  .nav{display:none}
  .mobile-toggle{display:inline-block}
  .h1-hero{font-size:46px}
  .section-title{font-size:44px}
  .pill h3{font-size:44px}
  .pill p{font-size:18px}
  .footer-grid{grid-template-columns:1fr; gap:34px}
  .fast-links-title{text-align:left}
  .fast-links{justify-content:flex-start}
}


/* Brand logo (PNG) */
.brand-logo{height:109px;width:auto;display:block}
.brand{gap:12px}
@media (max-width:780px){.brand-logo{height:42px}}

/* FIX: dropdown "Products" ficando por baixo da hero */
.site-header{
  position: relative;
  z-index: 9999;
}

.nav-wrap{
  position: relative;
  z-index: 9999;
}

.dropdown{
  position: relative; /* garante referência pro absolute do menu */
}

.dropdown-menu{
  z-index: 10000;     /* força ficar acima de tudo */
}



/* Verification statuses */
.result-pill.ok{ color: #0c7f86; }
.result-pill.bad{ color: #b42318; }
.result-pill.warn{ color: #7a5a00; }

.verify-note{
  margin-top:12px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}


/* Attention popup (auto-added) */
.gh-modal-open{ overflow:hidden; }
#gh-attention-modal{ position:fixed; inset:0; z-index:9999; display:none; }
#gh-attention-modal.is-open{ display:block; }
#gh-attention-modal .gh-attention-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.62); }
#gh-attention-modal .gh-attention-dialog{
  position:relative;
  width:min(920px, calc(100vw - 28px));
  margin: min(7vh, 52px) auto 0;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  border:1px solid rgba(13,43,58,.18);
}
#gh-attention-modal .gh-attention-header{
  padding:18px 18px 14px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  border-bottom:1px solid rgba(13,43,58,.12);
}
#gh-attention-modal .gh-attention-title{ margin:0; font-size:18px; font-weight:800; letter-spacing:.02em; }
#gh-attention-modal .gh-attention-text{ margin:6px 0 0; color:var(--muted, #475569); line-height:1.5; font-weight:500; }
#gh-attention-close{
  appearance:none;
  border:1px solid rgba(13,43,58,.18);
  background:rgba(11,42,91,.06);
  color:var(--text, #0f172a);
  border-radius:12px;
  padding:8px 10px;
  font-weight:800;
  cursor:pointer;
}
#gh-attention-modal .gh-attention-body{
  padding:16px 18px 20px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
}
@media (max-width: 820px){ #gh-attention-modal .gh-attention-body{ grid-template-columns:1fr; } }
#gh-attention-modal .gh-attention-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  font-weight:900; letter-spacing:.08em; text-transform:uppercase;
  background: rgba(220,38,38,.10);
  border: 1px solid rgba(220,38,38,.25);
  color: #7f1d1d;
  margin-bottom:12px;
}
#gh-attention-modal .gh-attention-card{
  border:1px solid rgba(13,43,58,.12);
  border-radius:16px;
  padding:14px 14px 12px;
  background:#fff;
}
#gh-attention-modal .gh-attention-imgwrap{
  border:1px solid rgba(13,43,58,.12);
  border-radius:16px;
  padding:10px;
  background:#fff;
}
#gh-attention-modal .gh-attention-imgwrap img{ width:100%; display:block; border-radius:12px; }
