:root {
  --cor1: #db158c;
  --cor2: #fff;
  --cor3: #555;
  --cor4: #f4f6f9;
  --cor5: #b81272;
  --cor6: #292d49;
  --cor7: #ffc107;
  --cor8: #25d366;
  --cor9: #dcdcdc;
  --cor10: rgba(0, 0, 0, 0.5);
  --cor11: #f2f2f2;
  --cor12: #3c4267;
  --cor13: #1f2540;
  --cor14: #bbb;
  --cor15: rgba(0, 0, 0, 0.6);
  --cor16: rgba(0, 0, 0, 0.3);
  --cor17: rgba(255, 255, 255, 0.5);
  --cor18: rgba(255, 255, 255, 0.8);
  --cor19: #aaa;
  --cor20: #d4d4d4;
  --cor21: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f7fa;
}

html,
body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
  padding: 0;
}

.quadradosE {
  background-image: url("/imagens/site/quadrados.png");
  background-position: left bottom;
  background-repeat: no-repeat;
}

/* 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: #fff;
}

.hero-content h1 {
  text-transform: uppercase;
  font-weight: 700;
}

.hero .slide {
  height: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.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%;
  /* background: rgba(0, 0, 0, 0.55); */
  top: 0;
  left: 0;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100000;
  border-bottom: 1px solid #3b4345;
}

/* 👇 AQUI que resolve seu problema */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.conteudo {
  max-width: 1200px;
  margin: auto;
}

.logo {
  color: #fff;
  font-weight: 700;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* TODOS OS ITENS IGUAIS */
.nav > a,
.nav .dropdown {
  display: flex;
  align-items: center;
  height: 100%;
}

/* LINKS */
.nav a {
  display: flex;
  /* 👈 resolve desalinhamento */
  align-items: center;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px;
  font-size: 16px;
  font-weight: 700;
}

.nav a:hover {
  background-color: #70ba34;
  border-radius: 6px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  /* remove qualquer espaço */
  background: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s;
  pointer-events: none;
}

/* ABRIR */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ITENS DO MENU */
.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #333;
}

/* DESKTOP */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* RIGHT */
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang .dropdown-menu {
  right: 0;
  left: auto;
}

/* FLAG PADRÃO */
.lang img,
.dropdown-menu img {
  width: 24px;
  height: 24px;
}

/* HEADER LANG */
.lang > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

/* ITENS DO DROPDOWN */
.lang .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

/* HOVER BONITO */
.lang .dropdown-menu a:hover {
  background: #f2f2f2;
}

.whatsapp {
  background: #25d366;
  padding: 10px 20px;
  border-radius: 6px;
  color: #061419;
  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: #fff;
  cursor: pointer;
}

/* MOBILE */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #111;
  padding: 20px;
  transition: 0.3s;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
}

/* MOBILE DROPDOWN */
@media (max-width: 900px) {
  .nav,
  .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;
    /* 👈 ESSA LINHA resolve o espaço */
    display: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
    margin-top: 5px;
  }

  .dropdown-menu a {
    color: #fff;
    padding: 8px 0;
  }

  /* quando abrir */
  .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: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.bullet.active {
  opacity: 1;
}

/* MAIN */

.ambiental {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  /* centraliza vertical */
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  /* RESPIRO do topo */
}

.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: #fff;
}

.ambiental-grid {
  border-top: 1px solid #3b4345;
  border-bottom: 1px solid #3b4345;
  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: #70ba34;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  box-shadow: 0 0 0 6px rgba(131, 255, 183, 0.3);
}

.ambiental-item strong {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.ambiental-item p {
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .ambiental {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .ambiental h1 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .ambiental-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ambiental-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .circle {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }

  .ambiental-item h3 {
    font-size: 16px;
  }

  .ambiental-item p {
    font-size: 13px;
  }
}

/* Serviços */

/* SEÇÃO */
.secao-divisoes {
  width: 100%;
  background: #0f2727;
  padding: 30px;
  color: #fff;
}

/* NOVO NOME */
.wrap-divisoes {
  /*   max-width: 1200px;*/
  margin: auto;
}

/* TOPO */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.texto {
  flex: 1;  
  margin-right: 20px;
  /* aproxima das setas */
}

.texto h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #70ba34;
}

.texto p {
  
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
}

/* BOTÕES */
.navegacao {
  display: flex;
  gap: 10px;
}

.btn {
  background: #6cc24a;
  width: 48px;
  height: 48px;
  display: flex;
  /* 👈 ativa flex */
  align-items: center;
  /* 👈 centraliza vertical */
  justify-content: center;
  /* 👈 centraliza horizontal */
  border-radius: 6px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #0f2727;
}

/* SWIPER */
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  height: auto;
}

/* CARD */
.card-divisao {
  display: flex;
  width: 100%;
  background: #071c1b;
  border-radius: 6px;
  overflow: hidden;
  height: 390px;
  
}

.swiper-slide a {
  color: #fff;
  text-decoration: none;
}

/* ESQUERDA */
.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: #6cc24a;
  margin-bottom: 15px;
}

.icon img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  /* preenche sem deformar */
}

.card-divisao strong {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-divisao p {
  font-size: 14px;
  color: #bbb;
}

/* DIREITA */
.card-divisao .right {
  width: 50%;
}

.card-divisao .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .card-divisao {
    flex-direction: column;
    height: auto;
  }

  .card-divisao .left,
  .card-divisao .right {
    width: 100%;
  }

  .card-divisao img {
    height: 200px;
  }
}

/* Sobre */
/* CONTAINER */
.cc-sec-institucional {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  background-color: #061419;
}

.cc-container-institucional {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* ESQUERDA */
.cc-box-texto {
  flex: 1;
}

.cc-titulo-verde {
  color: #70ba34;
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 26px;
}

.cc-subtitulo-grande {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
}

/* TABS */
.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: #fff;
}

.cc-tab-btn.ativo {
  opacity: 1;
  border-color: #70ba34;
}

/* CONTEÚDO */
.cc-tab-conteudo {
  display: none;
  line-height: 1.6;
  font-size: 15px;
  color: #fff;
}

.cc-tab-conteudo.ativo {
  display: block;
}

/* DIREITA */
.cc-box-slider {
  flex: 1;
  position: relative;
}

.cc-slider-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border: 8px solid #70ba34;
  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: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.cc-bullet.ativo {
  background: #70ba34;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cc-container-institucional {
    flex-direction: column;
  }

  .cc-slider-container {
    height: 250px;
  }
}

/* Notícias */
/* SECTION */
.cc-noticias-area {
  padding: 30px;
  background: #0f2727;
  color: #fff;
  position: relative;
  background-image: url("/imagens/site/quadrados.png");
  background-position: right bottom;
  background-repeat: no-repeat;
}

/* HEADER */
.cc-noticias-topo {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.cc-noticias-badge {
  display: inline-block;
  background: #6edb5a;
  color: #0a1f1c;
  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: #fff;
}

/* SLIDER */
.cc-noticias-slider {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
  /* 🔥 espaço pros bullets */
}

.cc-noticias-paginacao {
  margin-top: 20px;
  text-align: center;
}

/* CARD */
.cc-noticia-card {
  position: relative;
  border-radius: 6px;
  overflow: visible;
  /* 🔥 importante pra deixar o card "sair" */
}

/* IMAGEM */
.cc-noticia-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* OVERLAY (AGORA CORRETO) */
.cc-noticia-info {
  position: relative;

  background: #0f3a33;
  padding: 18px;
  border-radius: 6px;

  width: calc(100% - 40px);
  margin: -70px auto 0;
  /* 🔥 ESSA LINHA FAZ O EFEITO */

  z-index: 2;
}

/* SOMBRA PRA DAR PROFUNDIDADE */
/* .cc-noticia-info {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
} */

/* DATA */
.cc-noticia-data {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9fd6c7;
  margin-bottom: 10px;
}

/* TITULO */
.cc-noticia-titulo {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* LINK */
.cc-noticia-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6edb5a;
  cursor: pointer;
}

/* BULLETS */
.cc-noticias-paginacao {
  margin-top: 30px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #6edb5a;
  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;
    /* ajusta no mobile */
  }
}

/* Newsletter */
/* ================= NEWSLETTER ================= */

.newsletter-section {
  padding: 30px;
  background-color: #061419;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}

/* TÃTULO */

.newsletter-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 700;
  color: #70ba34;  
}

.newsletter-info .barra {
  width: 6px;
  height: 30px;
  background: #70ba34;
  border-radius: 3px;
}

.newsletter-info p {
  font-size: 16px;
  color: #fff;
}

/* FORM */

.newsletter-form form {
  display: flex;
  background: #0f2727;
  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: #70ba34;
  color: #061419;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  /* ðŸ”¥ importante */
  align-items: center;
  /* ðŸ”¥ alinha vertical */
  gap: 10px;
  /* ðŸ”¥ espaÃ§o entre texto e Ã­cone */
  text-transform: uppercase;
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.newsletter-form button:hover {
  background: #fff;
  color: #061419;
}

/* RESPONSIVO */

@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;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* Contato*/
/* ================= CONTATO ================= */

.contato-section {
  background: #0f2727;
  color: var(--cor2);
  padding: 30px;
  background-image: url("quadrados.png");
  background-position: left bottom;
  background-repeat: no-repeat;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* TÃTULO */

.contato-info h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 700;
  color: #70ba34;
  margin-bottom: 20px;
}

.contato-info .barra {
  width: 6px;
  height: 30px;
  background: #70ba34;
  border-radius: 3px;
}

.contato-info p {
  line-height: 1.7;
  color: var(--cor2);
  margin-bottom: 30px;
}

/* DETALHES */

.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: #7f8793;
}

.contato-social {
  display: flex;
  gap: 15px;
}

.contato-social a {
  display: flex !important;
  width: 38px;
  height: 38px;
  background-color: #7f8793 !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;
  stroke: var(--cor2);
  stroke-width: 2.5;
}

.contato-social a:hover {
  transform: translateY(-3px);
}

/* FORM */

.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: #7f8793;
  border: 1px solid #6d7582;
  border-radius: 5px;
  padding: 10px;
  color: var(--cor2);
  outline: none;
  transition: 0.3s;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #fff;
}

.form-group.full {
  margin-top: 20px;
}

.form-footer {
  margin-top: 15px;
  text-align: right;
}

.form-footer button {
  background: #70ba34;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  color: #061419;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  /* ðŸ”¥ importante */
  align-items: center;
  /* ðŸ”¥ alinha vertical */
  gap: 10px;
  /* ðŸ”¥ espaÃ§o entre texto e Ã­cone */
}

.form-footer button svg {
  width: 18px;
  height: 18px;
}

.form-footer button:hover {
  background: #fff;
  color: #061419;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .contato-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    text-align: center;
  }
}

/* Rodapé */
/* ================= FOOTER ================= */

footer {
  color: #fff;
  background-color: #061419;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer img {
  height: 51px;
  /* ajuste conforme necessÃ¡rio */
  object-fit: contain;
}

/* Empresa (interno)*/
.secao-empresa {
  background: linear-gradient(180deg, #0c2a24, #0a1f1c);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.empresa-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* VIDEO */
.empresa-video {
  flex: 1;
}

.empresa-video iframe {
  width: 100%;
  height: 320px;
  border-radius: 6px;
}

/* TEXTO */
.empresa-texto {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.empresa-texto p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .empresa-grid {
    flex-direction: column;
  }

  .empresa-video iframe {
    height: 220px;
  }
}

.secao-mvv {
  background: linear-gradient(180deg, #0c2a24, #0a1f1c);
}

.mvv-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.mvv-card {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  background: rgba(0, 40, 35, 0.9);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* GRID BACKGROUND */
.mvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

/* HOVER */
.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ICON */
.mvv-icon {
  margin-bottom: 20px;
}

.mvv-icon svg {
  width: 70px;
  height: 70px;
  stroke: #6cc24a;
}

/* TITULO */
.mvv-card strong {
  font-size: 22px;
  
}

/* TEXTO */
.mvv-card p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .mvv-grid {
    flex-direction: column;
  }
}

.secao-segmentos {
  background: linear-gradient(180deg, #061419, #041012);

  color: #fff;
}

/* TITULO */
.titulo-segmentos {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* GRID */
.segmentos-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.segmento-card {
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  min-width: unset;
  max-width: 100%;
  background: rgba(0, 40, 35, 0.9);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* GRID BACKGROUND */
.segmento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

/* HOVER */
.segmento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* ICON */
.segmento-card .icon {
  margin-bottom: 15px;
}

.segmento-card .icon svg {
  width: 60px;
  height: 60px;
  stroke: #6cc24a;
}

/* TITULO CARD */
.segmento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXTO */
.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%;
  }
}

.secao-divisoes-interna {
  background: linear-gradient(180deg, #0c2a24, #0a1f1c);
  color: #fff;
}

/* TITULO */
.titulo-divisoes {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.texto-divisoes p {
  margin-bottom: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID */
.divisoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.divisao-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 20, 25, 0.95);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* GRID BACKGROUND */
.divisao-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

/* HOVER */
.divisao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ICON */
.divisao-card .icon svg {
  width: 50px;
  height: 50px;
  stroke: #6cc24a;
}

/* TEXTO */
.divisao-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.divisao-card p {
  font-size: 14px;
  opacity: 0.85;
}

/* RESPONSIVO */
@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;
}

/* CARD */
.cc-noticia-card {
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

 .cc-noticia-card:hover {
  transform: translateY(-5px);  
} 

/* IMAGEM */
.cc-noticia-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* INFO */
.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: #6edb5a;
}

/* RESPONSIVO */
@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: #061319;
}

.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 Internos */
.cc-divisoes-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID 2x2 */
.cc-divisoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.cc-divisao-card {
  display: flex;
  background: #0a1f1c;
  border-radius: 12px;
  overflow: hidden;
  min-height: 390px;
}

/* LADO ESQUERDO */
.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;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cc-divisoes-grid {
    grid-template-columns: 1fr;
  }

  .cc-divisao-card {
    flex-direction: column;
  }

  .cc-divisao-card .cc-right {
    height: 200px;
  }
}