@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-blue: #0093d8;
  --primary-hover: #007bb5;
  --dark-bar: #333333;
  --text-dark: #211915;
  --text-gray: #54595f;
  --text-muted: #7a7a7a;
  --bg-gray-light: #e8edf2;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-gray);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   HEADER OFICIAL (LIMPO, SEM BARRA DE IDIOMAS)
   ========================================================================== */
.site-header {
  background: #ffffff;
  height: 90px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
}

.nav-link:hover, .nav-item.active > .nav-link {
  color: var(--primary-hover);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary-blue);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444444;
  border-bottom: 1px solid #f2f2f2;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: #f4faff;
  color: var(--primary-blue);
  padding-left: 24px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 5px;
}

/* ==========================================================================
   PAGE TITLE BAR (FAIXA CINZA ESCURA DAS PÁGINAS INTERNAS)
   ========================================================================== */
.internal-title-bar {
  background-color: var(--dark-bar);
  height: 68px;
  display: flex;
  align-items: center;
}

.internal-title-bar h1 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HERO SLIDER DA HOME
   ========================================================================== */
.hero-slider-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  background-color: #000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(18, 28, 40, 0.75);
  border: 1px solid rgba(0, 147, 216, 0.5);
  border-radius: 8px;
  padding: 35px 50px;
  text-align: center;
  max-width: 780px;
  width: 90%;
  backdrop-filter: blur(4px);
}

.hero-center-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-center-desc {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #d1ecfa;
  line-height: 1.4;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  border-radius: 4px;
}

.hero-nav-arrow:hover {
  background: var(--primary-blue);
}

.hero-nav-arrow.prev { left: 20px; }
.hero-nav-arrow.next { right: 20px; }

/* ==========================================================================
   SEÇÃO 2: INSTITUCIONAL NA HOME (3 FOTOS NA ESQUERDA + TEXTO NA DIREITA)
   ========================================================================== */
.section-institucional-home {
  padding: 60px 0;
  background: #ffffff;
}

.institucional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.unit-photos-triangle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

.unit-item {
  text-align: center;
}

.unit-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.unit-item.item-sp {
  grid-column: 2;
}

.unit-item.item-salto {
  grid-column: 1;
}

.unit-item.item-americana {
  grid-column: 2;
}

.unit-label {
  font-size: 12.5px;
  color: #555555;
  margin-top: 6px;
  font-weight: 500;
}

.institucional-content h2.toyobo-big-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.institucional-content p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.btn-pill-blue {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  border-radius: 25px;
  margin-top: 10px;
}

.btn-pill-blue:hover {
  background-color: var(--primary-hover);
}

.lgpd-floating-badge {
  display: inline-block;
  max-width: 150px;
  margin-top: 25px;
  float: right;
}

/* ==========================================================================
   SEÇÃO 3: CONTROLE BIOLÓGICO DE PRECISÃO (6 CARDS EM 2 COLUNAS)
   ========================================================================== */
.section-produtos-home {
  padding: 60px 0;
  background: #ffffff;
}

.section-main-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-blue-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-blue);
  margin: 12px auto 50px auto;
}

.produtos-six-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 50px;
}

.product-six-card {
  text-align: center;
}

.product-six-card .card-top-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 25px;
}

.product-brand-box {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product-brand-box img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.product-brand-box h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
}

.product-brand-box h3.ecoduo-title {
  text-transform: none;
  font-weight: 700;
}

.product-brand-box h3.ativos-title {
  text-transform: none;
  font-weight: 700;
}

.product-card-desc {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 20px auto;
  min-height: 48px;
}

.btn-pill-outline {
  display: inline-block;
  background: #ffffff;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 32px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.btn-pill-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

/* ==========================================================================
   SEÇÃO 4: FAIXA BIPARTIDA POLÍTICA DE QUALIDADE
   ========================================================================== */
.section-bipartida-qualidade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-gray-light);
}

.bipartida-left {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.bipartida-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.bipartida-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.bipartida-right {
  height: 100%;
}

.bipartida-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* ==========================================================================
   SEÇÃO 5: FAIXA BIOLÓGICOS DE PRECISÃO (SUSTENTABILIDADE)
   ========================================================================== */
.section-banner-precisao {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 85px 0;
  text-align: center;
}

.banner-precisao-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.banner-precisao-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 12px 0 25px 0;
}

/* ==========================================================================
   RODAPÉ OFICIAL (3 COLUNAS + FAIXA AZUL INFERIOR)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  padding: 60px 0 35px 0;
  border-top: 1px solid #f0f0f0;
}

.footer-three-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col-brand img {
  height: 48px;
  margin-bottom: 18px;
}

.footer-col-brand p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.7;
}

.footer-col-brand a.more-link {
  color: var(--primary-blue);
  font-weight: 700;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  font-size: 13.5px;
  color: #555555;
  font-weight: 500;
}

.footer-nav-list a:hover {
  color: var(--primary-blue);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #555555;
  margin-bottom: 14px;
}

.footer-contact-list .icon-blue {
  color: var(--primary-blue);
  font-size: 16px;
  min-width: 16px;
  margin-top: 2px;
}

.footer-bottom-bar {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

/* ==========================================================================
   ESTILOS DE PÁGINAS INTERNAS (PRODUTOS, SGI, CONTATO)
   ========================================================================== */
.internal-content-section {
  padding: 50px 0 70px 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.product-detail-info .prod-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.product-detail-info h2.prod-name {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 15px;
}

.product-detail-info p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.product-tech-specs {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.product-tech-specs strong {
  color: #111111;
}

.product-main-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.framed-targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.framed-targets-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.framed-target-card {
  background: #ffffff;
  padding: 12px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.framed-target-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 14px;
}

.framed-target-card .target-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
}

/* SGI GRID */
.sgi-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.sgi-card-box {
  background: #f8fafd;
  border: 1px solid #e2edf6;
  border-radius: 6px;
  padding: 30px;
}

.sgi-blue-dots {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sgi-blue-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  margin-right: 4px;
}

.sgi-six-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.sgi-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sgi-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.sgi-item h4 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.sgi-item p {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* SUSTENTABILIDADE & SERVIÇOS */
.check-list-block {
  margin-bottom: 25px;
}

.check-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.check-desc {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
  padding-left: 32px;
}

.check-desc ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 6px;
}

/* FORMULÁRIO SAC / TRABALHE CONOSCO */
.form-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-group-clean {
  margin-bottom: 18px;
}

.form-group-clean label {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.form-control-clean {
  width: 100%;
  padding: 10px 14px;
  background: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: #222;
}

.form-control-clean:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #fff;
}

textarea.form-control-clean {
  height: 140px;
  resize: vertical;
}

.btn-square-blue {
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 10px 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-square-blue:hover {
  background: #005177;
}

.map-embed-box iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE
   ========================================================================== */
@media (max-width: 992px) {
  .site-header {
    height: 75px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    gap: 0;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-top: none;
    background: #f8fbfe;
  }
  .dropdown-menu.show {
    display: block;
  }
  .hero-slider-wrap {
    height: 400px;
  }
  .hero-center-title {
    font-size: 28px;
  }
  .institucional-grid {
    grid-template-columns: 1fr;
  }
  .produtos-six-grid {
    grid-template-columns: 1fr;
  }
  .section-bipartida-qualidade {
    grid-template-columns: 1fr;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .sgi-page-layout {
    grid-template-columns: 1fr;
  }
  .form-map-layout {
    grid-template-columns: 1fr;
  }
  .footer-three-cols {
    grid-template-columns: 1fr;
  }
  .framed-targets-grid {
    grid-template-columns: 1fr;
  }
}
