/* =====================================================
   PALETA DE CORES
===================================================== */
:root {
  --cor1: #061319;
  --cor2: #fff;
  --cor3: #70ba34;
  --cor4: #3b4345;
  --cor5: #f2f2f2;
  --cor6: #25d366;
  --cor7: #061419;
  --cor8: #000;
  --cor9: #ccc;
  --cor10: #0f2727;
  --cor11: #0f3a33;
  --cor12: rgba(0, 0, 0, 0.2);
  --cor13: #9fd6c7;
  --cor14: rgba(255, 255, 255, 0.7);
  --cor15: rgba(0, 0, 0, 0.65);
  --cor16: #0c2a24;
  --cor17: rgba(255, 255, 255, 0.05);
  --cor18: #5aa62a;
  --cor19: #1e1e1e;
  --cor20: #ef3340;
}

/* Scroll inteiro */
::-webkit-scrollbar {
  width: 10px;
}

/* Fundo */
::-webkit-scrollbar-track {
  background: var(--cor19);
}

/* Barra */
::-webkit-scrollbar-thumb {
  background: var(--cor3);
  border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--cor18);
}

/* =====================================================
   PADRÃO
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--cor1);
}

html,
body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
  padding: 0;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  width: 100%;
}

.hero-home {
  height: 600px;
  min-height: 600px;
}

.hero-interna {
  height: 280px;
}

.hero-content {
  padding-top: 130px;
  position: relative;
  z-index: 50;
  color: var(--cor2);
}

.hero-content h1 {
  text-transform: uppercase;
  font-weight: 700;
}

.hero .slide {
  height: 100%;
}

.hero {
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s;
}

.slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* =====================================================
  HEADER
===================================================== */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100000;
  border-bottom: 1px solid var(--cor4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.conteudo {
  max-width: 1200px;
  margin: auto;
}

/* =====================================================
   LOGOTIPO
===================================================== */
.logo {
  color: var(--cor2);
  font-weight: 700;
}

/* =====================================================
   NAVEGAÇÃO
===================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav > a,
.nav .dropdown {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--cor2);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  background-color: var(--cor3);
  border-radius: 6px;
  color: var(--cor2);
}

.dropdown {
  position: relative;
}

.dropdown-menu-lang {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: var(--cor2);
  border-radius: 8px;
  box-shadow: 0 10px 25px var(--cor12);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s;
  pointer-events: none;
  min-width: 120px;
  z-index: 2000;
}

.dropdown:hover .dropdown-menu-lang {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-menu-lang a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: var(--cor4);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.dropdown-menu-lang a img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.dropdown-menu-lang a:hover {
  background-color: var(--cor3);
  border-radius: 6px;
  color: var(--cor2);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: var(--cor2);
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 10px 25px var(--cor12);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: var(--cor4);
}

@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* =====================================================
   IDIOMAS
===================================================== */
.lang .dropdown-menu {
  right: 0;
  left: auto;
}

.lang img,
.dropdown-menu img {
  width: 24px;
  height: 24px;
}

.lang > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cor2);
}

.lang .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}

.lang .dropdown-menu a:hover {
  background: var(--cor5);
}

/* =====================================================
   WHATSAPP
===================================================== */
.whatsapp {
  background: var(--cor6);
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--cor7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
}

.whatsapp img {
  width: 18px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(20%) saturate(500%)
    hue-rotate(160deg);
}

/* =====================================================
   HAMBURGER
===================================================== */
.hamburger {
  display: none;
  color: var(--cor2);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--cor1);
  padding: 20px;
  transition: 0.3s;
  z-index: 9999999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: var(--cor2);
  padding: 10px 0;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav,
  header .right {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .dropdown {
    width: 100%;
    flex-direction: column;
  }

  .dropdown a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
    margin-top: 5px;
  }

  .dropdown-menu a {
    color: var(--cor2);
    padding: 8px 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* =====================================================
  BULLETS
===================================================== */
.bullets {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cor2);
  opacity: 0.5;
  cursor: pointer;
}

.bullet.active {
  opacity: 1;
}

/* =====================================================
   DESTAQUE 1
===================================================== */
.ambiental {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.ambiental-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.ambiental h1 {
  font-size: 32px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.4;
  color: var(--cor2);
}

.ambiental-grid {
  border-top: 1px solid var(--cor4);
  border-bottom: 1px solid var(--cor4);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.ambiental-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 320px;
  text-align: left;
}

.circle {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cor3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--cor8);
  box-shadow: 0 0 0 6px var(--cor11);
}

.ambiental-item strong {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--cor2);
}

.ambiental-item p {
  font-size: 14px;
  color: var(--cor9);
}

@media (max-width: 768px) {
  .ambiental h1 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .ambiental-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ambiental-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .circle {
    width: 80px;
    height: 80px;
    font-size: 15px;
  }

  .ambiental-item h3 {
    font-size: 16px;
  }

  .ambiental-item p {
    font-size: 13px;
  }
}

/* =====================================================
  SERVIÇOS (HOME)
===================================================== */
.secao-divisoes {
  width: 100%;
  background: var(--cor10);
  padding: 30px;
  color: var(--cor2);
}

.wrap-divisoes {
  margin: auto;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.texto {
  flex: 1;
  margin-right: 20px;
}

.texto h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--cor3);
}

.texto p {
  color: var(--cor2);
  font-size: 17px;
  line-height: 1.6;
}

.navegacao {
  display: flex;
  gap: 10px;
}

.btn {
  background: var(--cor3);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  color: var(--cor8);
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: var(--cor2);
  color: var(--cor10);
}

/* =====================================================
   SWIPER
===================================================== */
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  height: auto;
}

.card-divisao {
  display: flex;
  width: 100%;
  background: var(--cor1);
  border-radius: 6px;
  overflow: hidden;
  height: 390px;
}

.swiper-slide a {
  color: var(--cor2);
  text-decoration: none;
}

.card-divisao .left {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("/imagens/site/grades.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.icon {
  font-size: 32px;
  color: var(--cor3);
  margin-bottom: 15px;
}

.icon img {
  width: 64px;
  height: 64px;
}

.card-divisao strong {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-divisao p {
  font-size: 14px;
  color: var(--cor2);
}

.card-divisao .right {
  width: 50%;
}

.card-divisao .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .card-divisao {
    flex-direction: column;
    height: auto;
  }

  /* 🔥 FORÇA A IMAGEM VIR PRIMEIRO */
  .card-divisao .right {
    order: 1;
    width: 100%;
  }

  .card-divisao .left {
    order: 2;
    width: 100%;
  }

  .card-divisao .right img {
    height: 220px;
  }
}

/* =====================================================
   SOBRE A NUTRENZI (HOME)
===================================================== */
.cc-sec-institucional {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  background-color: var(--cor7);
}

.cc-container-institucional {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.cc-box-texto {
  flex: 1;
}

.cc-titulo-verde {
  color: var(--cor3);
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 26px;
}

.cc-subtitulo-grande {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--cor2);
}

.cc-tabs-menu {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.cc-tab-btn {
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  opacity: 0.6;
  transition: 0.3s;
  color: var(--cor2);
}

.cc-tab-btn.ativo {
  opacity: 1;
  border-color: var(--cor3);
}

.cc-tab-conteudo {
  display: none;
  line-height: 1.6;
  color: var(--cor2);
}

.cc-tab-conteudo p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.cc-tab-conteudo.ativo {
  display: block;
}

.cc-box-slider {
  flex: 1;
  position: relative;
}

.cc-slider-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border: 8px solid var(--cor3);
  border-radius: 6px;
}

.cc-slide-item {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 6px;
}

.cc-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.cc-slide-item.ativo {
  display: block;
}

.cc-slider-container {
  position: relative;
}

.cc-slider-bullets {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.cc-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cor9);
  cursor: pointer;
  transition: 0.3s;
}

.cc-bullet.ativo {
  background: var(--cor3);
}

@media (max-width: 900px) {
  .cc-container-institucional {
    flex-direction: column;
  }

  .cc-slider-container {
    height: 250px;
  }
}

/* =====================================================
   NOTÍCIAS (HOME)
===================================================== */
.swiper-slide a {
  width: 100%;
}

.cc-noticias-area {
  padding: 30px;
  background: var(--cor10);
  color: var(--cor2);
  position: relative;
  background-image: url("/imagens/site/quadrados.png");
  background-position: right bottom;
  background-repeat: no-repeat;
}

/* TOPO */
.cc-noticias-topo {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.cc-noticias-badge {
  display: inline-block;
  background: var(--cor3);
  color: var(--cor1);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.cc-noticias-titulo {
  font-size: 18px;
  line-height: 1.6;
  color: var(--cor2);
}

/* SLIDER */
.cc-noticias-slider {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

/* CARD */
.cc-noticia-card {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}

.cc-noticia-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.cc-noticia-card a {
  color: var(--cor2);
  text-decoration: none;
}

/* INFO */
.cc-noticia-info {
  position: relative;
  background: var(--cor1);
  padding: 18px;
  border-radius: 6px;
  width: calc(100% - 40px);
  margin: -70px auto 0;
  z-index: 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.cc-noticia-data {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--cor13);
  margin-bottom: 10px;
}

.cc-noticia-titulo {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
}

.cc-noticia-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cor3);
  cursor: pointer;
}

/* PAGINAÇÃO */
.cc-noticias-paginacao {
  margin-top: 30px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: var(--cor3);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cc-noticia-card img {
    height: 220px;
  }

  .cc-noticia-info {
    margin: -50px auto 0;
  }
}
/* =====================================================
   NEWSLETTER
===================================================== */
.newsletter-section {
  padding: 30px;
  background-color: var(--cor7);
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}

.newsletter-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 700;
  color: var(--cor3);
}

.newsletter-info .barra {
  width: 6px;
  height: 30px;
  background: var(--cor3);
  border-radius: 3px;
}

.newsletter-info p {
  font-size: 16px;
  color: var(--cor2);
}

.newsletter-form form {
  display: flex;
  background: var(--cor10);
  border-radius: 5px;
  padding: 3px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: var(--cor2);
  font-size: 15px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--cor14);
}

.newsletter-form button {
  background: var(--cor3);
  color: var(--cor7);
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.newsletter-form button:hover {
  background: var(--cor2);
  color: var(--cor7);
}

@media (max-width: 768px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-info h2 {
    justify-content: left;
  }

  .newsletter-info p {
    text-align: left;
  }

  .newsletter-form form {
    flex-direction: column;
    gap: 10px;
  }
}

/* =====================================================
   CONTATO
===================================================== */
.contato-section {
  background: var(--cor10);
  color: var(--cor2);
  padding: 30px;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contato-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 700;
  color: var(--cor3);
  margin-bottom: 20px;
}

.contato-info .barra {
  width: 6px;
  height: 30px;
  background: var(--cor3);
  border-radius: 3px;
}

.contato-info p {
  line-height: 1.7;
  color: var(--cor2);
  margin-bottom: 30px;
}

.contato-detalhe {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--cor2);
  border-bottom: 1px dashed var(--cor14);
  padding-bottom: 10px;
}

.contato-detalhe a {
  color: var(--cor2);
  text-decoration: none;
}

.contato-detalhe a:hover {
  text-decoration: underline;
}

.contato-detalhe svg {
  width: 20px;
  height: 20px;
  color: var(--cor9);
}

.contato-social {
  display: flex;
  gap: 15px;
}

.contato-social a {
  display: flex !important;
  width: 38px;
  height: 38px;
  background-color: var(--cor9) !important;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contato-social a svg,
.contato-social a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(5%) sepia(25%) saturate(900%)
    hue-rotate(160deg);
}

.contato-social a:hover {
  transform: translateY(-3px);
}

.contato-form form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group label span {
  font-size: 12px;
  color: var(--cor19);
  float: right;
}

.form-group input,
.form-group textarea {
  background: var(--cor9);
  border: 1px solid var(--cor1);
  border-radius: 5px;
  padding: 10px;
  color: var(--cor1);
  outline: none;
  transition: 0.3s;
  font-weight: 700;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cor2);
}

.form-group.full {
  margin-top: 20px;
}

.form-footer {
  margin-top: 15px;
  text-align: right;
}

.form-footer button {
  background: var(--cor3);
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  color: var(--cor7);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-footer button svg {
  width: 18px;
  height: 18px;
}

.form-footer button:hover {
  background: var(--cor2);
  color: var(--cor7);
}

@media (max-width: 1024px) {
  .contato-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    text-align: center;
  }
}

/* =====================================================
   FOOTER
==================================================== */
footer {
  color: var(--cor2);
  background-color: var(--cor7);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer img {
  height: 51px;
  object-fit: contain;
}

/* =====================================================
   EMPRESA (INTERNO)
===================================================== */
.secao-empresa {
  color: var(--cor2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.empresa-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* VIDEO */
.empresa-video {
  flex: 1;
}

.empresa-video iframe {
  width: 100%;
  height: 320px;
  border-radius: 6px;
}

.empresa-texto {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cor2);
}

.empresa-texto p {
  margin-bottom: 20px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .empresa-grid {
    flex-direction: column;
  }

  .empresa-video iframe {
    height: 220px;
  }
}

/* =====================================================
   MISSÃO/VISÃO/VALORES
===================================================== */
.secao-mvv {
  background: var(--cor16);
}

.mvv-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.mvv-card {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  background: var(--cor1);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  color: var(--cor2);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.mvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cor17) 1px, transparent 1px),
    linear-gradient(90deg, var(--cor17) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.mvv-icon {
  margin-bottom: 20px;
}

.mvv-icon svg {
  width: 70px;
  height: 70px;
  stroke: var(--cor3);
}

.mvv-card strong {
  font-size: 22px;
}

.mvv-card p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .mvv-grid {
    flex-direction: column;
  }
}

/* =====================================================
   SEGMENTOS
===================================================== */
.secao-segmentos {
  background: var(--cor7);
  color: var(--cor2);
}

.titulo-segmentos {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.segmentos-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.segmento-card {
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  min-width: unset;
  max-width: 100%;
  background: var(--cor11);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.segmento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cor17) 1px, transparent 1px),
    linear-gradient(90deg, var(--cor17) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.segmento-card:hover {
  transform: translateY(-6px);
}

.segmento-card .icon {
  margin-bottom: 15px;
}

.segmento-card .icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--cor3);
}

.segmento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.segmento-card p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .segmentos-grid {
    justify-content: center;
  }

  .segmento-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .segmento-card {
    flex: 1 1 100%;
  }
}

/* =====================================================
   DIVISÕES
===================================================== */
.secao-divisoes-interna {
  background: var(--cor16);
  color: var(--cor2);
}

.titulo-divisoes {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.texto-divisoes p {
  margin-bottom: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.divisoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.divisao-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--cor1);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.divisao-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cor17) 1px, transparent 1px),
    linear-gradient(90deg, var(--cor17) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

.divisao-card:hover {
  transform: translateY(-5px);
}

.divisao-card .icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--cor3);
}

.divisao-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.divisao-card p {
  font-size: 14px;
  opacity: 0.85;
}

.divisao-card a {
  color: var(--cor2);
  text-decoration: none;
}

@media (max-width: 1000px) {
  .divisoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .divisoes-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   NOTÍCIAS (INTERNO)
===================================================== */
.cc-noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cc-noticia-info {
  padding: 20px;
}

.cc-noticia-data {
  font-size: 13px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.cc-noticia-titulo {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cc-noticia-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: var(--cor3);
}

@media (max-width: 900px) {
  .cc-noticias-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cc-noticias-grid {
    grid-template-columns: 1fr;
  }
}

.bgVerde {
  background-color: var(--cor1);
}

.hero-interna {
  background-position: center center;
  background-size: cover;
}

.contato {
  background-image: url("/imagens/site/bg-contato.png");
}

.noticias {
  background-image: url("/imagens/site/bg-noticias.png");
}

.empresa {
  background-image: url("/imagens/site/bg-empresa.png");
}

.produto {
  background-image: url("/imagens/site/bg-produtos.png");
}

iframe {
  border: 0;
}

/* =====================================================
   PRODUTOS (INTERNO)
===================================================== */
.cc-divisoes-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.cc-divisoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.cc-divisao-card {
  display: flex;
  background: var(--cor1);
  border-radius: 12px;
  overflow: hidden;
  min-height: 390px;
}

.cc-divisao-card .cc-left {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("/imagens/site/grades.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.cc-divisao-card .cc-icon img {
  width: 60px;
  margin-bottom: 15px;
}

.cc-divisao-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.cc-divisao-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* LADO DIREITO */
.cc-divisao-card .cc-right {
  flex: 1;
}

.cc-divisao-card .cc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cc-divisoes-grid {
    grid-template-columns: 1fr;
  }

  .cc-divisao-card {
    flex-direction: column;
  }

  .cc-divisao-card .cc-right {
    height: 200px;
  }
}

/* Alertas */
.alert-overlay {
  position: fixed;
  inset: 0;
  background: var(--cor15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.alert-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.alert-box {
  background: var(--cor2);
  border-radius: 5px;
  max-width: 420px;
  width: 90%;
  padding: 26px;
  box-shadow: 0 10px 40px var(--cor21);
  text-align: center;
  transform: translateY(-20px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.alert-box p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.alert-overlay.active .alert-box {
  transform: translateY(0);
  opacity: 1;
}

.alert-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cor1);
}

.alert-message {
  font-size: 1rem;
  color: var(--cor3);
  margin-bottom: 24px;
}

.alert-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.alert-btn {
  border: none;
  border-radius: 5px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* =========================
   CONFIRM
========================= */
.alert-btn.confirm {
  background: var(--cor3);
  color: var(--cor2);
}

.alert-btn.confirm:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

/* =========================
   CANCEL
========================= */
.alert-btn.cancel {
  background: var(--cor4);
  color: var(--cor3);
}

.alert-btn.cancel:hover {
  background: var(--cor20);
}

/* =========================
   DANGER
========================= */
.alert-btn.danger {
  background: var(--cor1);
  color: var(--cor2);
}

.alert-btn.danger:hover {
  background: var(--cor5);
}

/* erro */
.erro-msg {
  margin-top: 4px;
  color: var(--cor20) !important;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  width: 100%;
}

input.erro,
select.erro,
textarea.erro {
  border: 1px solid var(--cor20);
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

/* =========================
PAGINAÇÃO
========================= */
.navegacao {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.navega {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: var(--cor11);
  color: var(--cor2);
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}

.navega:hover {
  background: var(--cor3);
  transform: translateY(-2px);
}

.navegaAtivo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: var(--cor3);
  color: var(--cor2);
  border-radius: 8px;
  font-weight: 700;
}

.navega.prev,
.navega.next {
  font-weight: 700;
  padding: 0 14px;
}

.dots {
  color: var(--cor9);
  padding: 0 5px;
  font-size: 14px;
}

/* =========================
RESPONSIVO
========================= */
@media (max-width: 600px) {
  .navegacao {
    gap: 6px;
  }

  .navega,
  .navegaAtivo {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
  }
}

.nenhum {
  text-align: center;
  padding: 10px;
  border: 1px solid var(--cor2);
  border-radius: 6px;
}

.btn-feixe {
  position: relative;
  border: none;
  overflow: hidden;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.btn-feixe svg {
  transition: transform 0.3s ease;
}

.btn-feixe:hover {
  transform: translateY(-2px);
  color: var(--cor2);
}

.btn-feixe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--cor14) 50%,
    transparent 100%
  );
  transform: translateX(-150%);
  opacity: 0;
  pointer-events: none;
  border-top: 3px solid var(--cor2);
  border-bottom: 3px solid var(--cor2);
  border-radius: 0;
}

.btn-feixe:hover::after {
  animation: feixe 0.9s ease-out forwards;
  opacity: 1;
}

@keyframes feixe {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(150%);
    opacity: 0;
  }
}

.img {
  width: 100%;
}

/* ================================
CARD
================================ */
.card-biologico {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  padding: 20px 25px;
  border-radius: 6px;
  margin-bottom: 30px;
  border: 1px solid var(--cor2);
}

.card-biologico * {
  text-align: left !important;
}

.card-biologico .icone {
  width: 60px;
  min-width: 60px;
}

.card-biologico .icone img {
  width: 100%;
  display: block;
}

.card-biologico .conteudo {
  flex: 1;
  margin: 0;
}

.card-biologico .conteudo strong {
  margin: 0;
  font-size: 20px;
  color: var(--cor2);
}

.card-biologico .conteudo p {
  margin: 5px 0 0;
  font-size: 15px;
  color: var(--cor2);
}

/* ================================
   SLIDE
================================ */
.slide-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--cor2);
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  width: 100%;
}

.slide-img {
  flex: 1;
  max-width: 400px;
}

.slide-img img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 10px;
}

/* TEXTO */
.slide-content {
  flex: 1.2;
}

.slide-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--cor1);
}

.slide-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cor1);
}

/* ================================
   SWIPER
================================ */
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
}

/* ================================
   SETAS
================================ */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 40px;
  width: 38px;
  height: 38px;
  background: var(--cor11);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  transition: 0.3s;
  z-index: 10;
  color: var(--cor2);
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  right: 60px;
  left: auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--cor3);
  color: var(--cor2);
  transform: scale(1.05);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: var(--cor2);
}

/* ================================
   PAGINAÇÃO (AGORA VISÍVEL)
================================ */
.swiper-pagination {
  margin-top: 25px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: var(--cor9);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--cor3);
  transform: scale(1.2);
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 900px) {
  .slide-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .slide-img {
    max-width: 100%;
    max-height: 260px;
  }

  .slide-img img {
    max-height: 260px;
  }

  .slide-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .slide-box {
    gap: 20px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 30px;
  }
}

/* =========================
   NOTÍCIA FLOW (REVISTA)
========================= */
.noticia-flow {
  margin: 0 auto;
}

.noticia-flow h2 {
  font-size: 20px;
  color: var(--cor3);
  margin-bottom: 30px;
  margin-top: 30px;
  text-transform: uppercase;
}

.noticia-flow a {
  text-decoration: none;
  color: var(--cor3);
}

.noticia-flow a:hover {
  text-decoration: underline;
}

.img-lateral {
  float: left;
  width: 500px;
  max-width: 45%;
  margin: 0 25px 15px 0;
  border-radius: 10px;
}

.noticia-flow p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cor2);
  margin-bottom: 15px;
}

.lead {
  font-size: 18px;
  font-weight: 500;
}

.noticia-flow::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .img-lateral {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }
  .container {
    padding: 30px;
  }

  .hero-home {
    height: 800px;
  }

  .ambiental {
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .topo {
    display: block;
    margin-bottom: 20px;
  }

  .topo > * {
    margin-bottom: 10px;
  }

  .newsletter-form button {
    width: 100%;
    justify-content: center; /* 🔥 CENTRALIZA */
  }

  .mobile-menu a {
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px dashed var(--cor2);
  }

  .dropdown a {
    display: flex;
  }

  .dropdown-toggle i,
  .dropdown-toggle svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: auto; /* 🔥 joga a seta pro FINAL MESMO */
  }

  .hero-interna {
    height: auto !important;
  }

  .logo img {
    width: 180px;
  }

  header .right {
    display: block;
  }

  .dropdown-menu a {
    border-bottom: 0 !important;
  }

  .whatsapp {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: var(--cor7) !important;
    border-bottom: 0 !important;
  }

  header .container {
    display: flex;
    align-items: center;
  }

  header .right {
    margin-left: auto;
    margin-right: 20px;
  }

  .dropdown a {
    width: 100%;
    justify-content: flex-start; /* 👈 esquerda */
  }

  .empresa-grid {
    align-items: normal;
  }
}

.noticia-flow iframe {
  width: 100%;
  min-height: 515px;
}
