/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
}
html, body {
  overflow-x: hidden;
}
body {
  font-family: "Noto Sans", sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}
.logo{
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  min-height: 100vh;
}
/* HEADER */
.header {
  height: 80px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu {
  display: flex;
  gap: 20px;
}
.menu a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-family: "Noto Serif", serif;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.menu a:hover {
  color: black;
}
.menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}
.logo {
  height: 60px;
}
/* HERO */
.hero {
  color: white;
  display: flex;
  position: relative;
  height: auto;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}
.hero-content {
  z-index: 2;
  text-align: center;
}
.hero-text h1 {
  font-family: "Noto Serif", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 3rem;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1rem;
  margin: 3rem;
}
.hero-button {
  display: inline-block; 
  margin-top: 1.5rem;
  background-color: black;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.1s ease, transform 0.1s ease;
  font-family: "Noto Serif", serif;
}
.hero-button:hover {
  background-color: #BFBFBF;
  transform: translateY(-3px);
}
.hero-text{
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.hero-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(0.50);
}
.hero-slide.active {
  opacity: 1;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #BFBFBF;
  cursor: pointer;
}
.container-solucoes-grid {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 0 0;
  min-height: 90vh;
}
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 20px 0;
}
a.card-solu {
  display: flex; 
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.card-solu {
  position: relative;
  border-radius: 0 0 22px 0;
  height: 180px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  display: flex;
  align-items: flex-end;
  padding: 35px;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-solu img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.card-solu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.card-solu span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}
.card-solu:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.bloco-sustentabilidade-inovacao {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
.texto-sustentabilidade{
  text-align: center;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
h2 {
  font-family: "Noto Serif", serif;
  font-size: 2.2rem;
  color: #111111;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 2px rgba(0,0,0,0.1);
  text-align: center;
}
.frase-efeito {
  font-size: 1rem;
  color: #111;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  margin: 12px auto 20px auto;
  line-height: 1.6;
  max-width: 700px;
}
.acoes-detalhes {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  gap: 12px;
}
.btn-interno,
.btn-interno-solucoes {
  display: block;
  width: fit-content;
  margin: 1.5rem auto;
  padding: 10px 22px;
  background: transparent;
  color: #111;
  border: 1.5px solid #111;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: 
    background 0.2s ease,
    color 0.2s ease,
    transform 0.1s ease;
  cursor: pointer;
}
.btn-interno:hover,
.btn-interno-solucoes:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}
.galeria-tema {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.galeria-tema img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.galeria-tema img:hover {
  transform: scale(1.05);
}
.detalhes-tema {
  max-height: 0;
  overflow: hidden;
  background: rgba(230, 228, 228, 0.95);
  margin-top: 0;
  padding: 0 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    padding 0.35s ease,
    margin-top 0.35s ease;
  border-radius: 12px;
  border: 1px solid rgba(220, 220, 220, 0.6);
  backdrop-filter: blur(6px);
  position: relative;
}
.detalhes-tema.active {
  opacity: 1;
  max-height: 1000px;
  padding: 1.8rem 1.5rem;
  margin-top: 24px;
}
.detalhes-tema strong {
  display: inline-block;
  padding: 7px 0 0 0;
  font-family: "Noto Serif", serif;
}
#abordagem strong {
  display: block;
  margin-bottom: 2rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  text-align: center;
}
#abordagem .lista-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#abordagem .lista-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 1.1rem;
}
#abordagem .lista-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
  border: 1px solid #111;
  border-radius: 50%;
}
#abordagem .lista-check p {
  margin: 0;
  line-height: 1.5;
  color: #333;
  text-align: left;
}
.detalhes-tema ul, #solucoes ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.detalhes-tema li, #solucoes li {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.3rem;
}
.detalhes-tema p, #solucoes p {
  margin: 0;
  padding: 0 0 5px 0;
}
.conteudo-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.conteudo-extra.active {
  max-height: 2000px;
  opacity: 1;
}
.fechar-tema {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease, transform 0.2s ease;
}
.fechar-tema:hover {
  color: #666;
  transform: scale(1.05);
}
h3 {
  font-family: "Noto Serif", serif;
  font-size: 1.7rem;
  color: #111111;
}
h4 {
  font-family: "Noto Serif", serif;
  font-size: 1.1rem;
  color: #111111;
  margin-top: 20px;
  text-align: center;
}
.equipe-membro h2{
  margin-top: 60px;
}
.equipe ul {
  max-width: 700px;
  margin: 20px auto 0;
  padding: 0 20px;
}
.equipe ul li {
  margin: 12px;
  text-align: justify;
}
.equipe-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
  text-align: center;
}
.equipe p{
  margin-bottom: 40px;
}
dl {
  display: grid;
  justify-items: start;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 32px 0;
  color: black;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(200, 200, 200, 0.5);
}
dl dt {
  font-weight: 700;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 0.3rem;
}
dl dd {
  line-height: 1.5;
  color: #333;
}
dl div {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(224, 236, 247, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
dl div:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.dl-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: justify;
}
.dl-servicos dt {
  font-size: 1.3rem;
}
.dl-treinamentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
}
.dl-treinamentos dt {
  font-size: 1.3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.8rem;
}
.dl-treinamentos dd {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.dl-servicos ul,.dl-servicos li,.dl-servicos p{
  text-align: center;
}
.dl-servicos li{
  margin-top: 12px;
  font-weight: bold;
  color: black;
}
.nr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nr-list li {
  border-radius: 4px;
  margin: 0;
  font-size: 0.98em;
}
.icon {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.5rem;
}
.icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
/* CONTATOS */
.contatos {
  padding: 60px 30px;
  max-width: 800px;
  min-height: 400px;
  margin: 0 auto;
}
.contatos h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  margin-bottom: 30px;
  text-align: center;
}
.contatos p {
  text-align: center;
}
.contatos ul {
  list-style: none;
  padding: 0;
}
.contatos li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 1.1rem;
}
.contatos i {
  color: black;
  font-size: 1.4rem;
}
.contatos a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.phones {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.phones a {
  text-decoration: none;
  color: #333;
}
.footer {
  background: #111111;
  color: white;
  padding: 20px;
  font-size: 0.9rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-info p {
  margin: 4px 0;
  color: #484848;
}
.footer-links a {
  color: #BFBFBF;
  margin: 0 12px 8px 12px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}
.instagram-link i {
  margin-right: 6px;
}
.footer-credits {
  font-size: 0.8rem;
  color: #484848;
}
.footer-credits a {
  color: #BFBFBF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}
.footer-credits a:hover {
  color: #ffffff;
}
.footer-credits i {
  margin-left: 6px;
  font-size: 0.9rem;
  vertical-align: middle;
}
/* RESPONSIVIDADE */
@media (min-width: 2500px) {
  .container, .header{
    width: 95%;
    max-width: 1600px;
    min-height: auto;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .container-solucoes-grid {
    width: 95%;
    min-height: auto;
  }
}
@media (max-width: 1025px) {
  .header{
    height: auto;
  }
  .hero-button {
    margin: 0 auto;
  }
  .container-solucoes-grid{
    padding: 20px 0 0 0;
  } 
  h2, .equipe h2 {
    margin: 0 auto;
  }
  .galeria-tema{
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .galeria-tema img{
    height: 150px;
  }
  .contatos h2{
    margin: 30px 0;
  }
}
@media (max-width: 900px) {
  .galeria-tema{
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  .menu.active {
    display: flex;
    z-index: 10;
  }
  .menu-toggle {
    display: block;
  }
  .menu a.active::after {
    display: none;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  .hero-button {
    padding: 0.8rem 1.8rem;
  }
  .footer-links a {
    display: block;
    margin: 6px 0;
  }
  p {
    font-size: 0.95rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .hero-button {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
  }
  .hero-content {
    bottom: 0;
  }
  .equipe h2 {
    font-size: 1.5rem;
  }
  .contatos {
    padding: 40px 20px;
    margin: 40px auto;
  }
  .contatos h2 {
    font-size: 1.5rem;
  }
  .contatos li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .footer {
    padding: 30px 15px;
  }
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}
@media (max-width: 480px) {
  .hero-text p {
    margin: 1rem;
  }
  .frase-efeito{
    font-size: 0.9rem;
  }
  h2 {
    text-align: center;
    font-size: 1.4rem;
  }
  h3{
    font-size: 1.3rem;
  }
  .btn-interno-solucoes{
    margin: 4px;
  }
  .acoes-detalhes {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-bottom: 30px;
  }
  .detalhes-tema.active {
    font-size: 0.95rem;
  }
  .detalhes-tema.active h2{
    padding: 0 20px;
  }
  .detalhes-tema.active li p{
    padding: 10px;
  }
  dl dt{
    font-size: 1.1rem;
  }
  .dl-servicos dt, .dl-treinamentos dt {
    text-align: center;
    font-size: 1.1rem;
  }
  .nr-list{
    flex-direction: column;
    text-align: center;
  }
  .equipe-container{
    flex-direction: column;
  }
}
@media (max-width: 380px) {
  .hero-text h1 {
    font-size: 1.5rem;
    margin: 1rem;
  }
  .detalhes-tema.active h2{
    font-size: 1.2rem;
  }
}
