@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --bg-dark: #121212;
  --accent-color: #c4a47c; /* Tom terroso/metálico */
  --text-gray: #b0b0b0;
  --primary-orange: #f39200;
  --dark-bg: #1a1a1a;
  --bg-color: #1a1a1a;
  --card-bg: #262626;
  --text-color: #ffffff;
  --card-bg: #1a1a1a;
  --primary-color: #ff9d00; /* Cor Âmbar */
  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --white: rgba(255, 255, 255, 0.788);
}

body {
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #121212 70%);
  color: white;
}

#hero {
  position: relative;
  height: 100vh; /* ou a altura que quiser */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 36px;
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

.header-cta .btn-contact {
  background: #00c16a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- MENU MOBILE ---------- */

/* Estilos Base do Menu */


/* Garante que o container do nav alinhe tudo ao centro */
.header-nav {
  display: flex;
  align-items: center; /* Alinha verticalmente links e dropdowns */
  gap: 20px; /* Ajuste o espaçamento entre os itens aqui */
}

/* Força o link do dropdown a ter o mesmo estilo dos links normais */
.header-nav .dropdown-trigger {
  font-size: inherit; /* Pega o tamanho de fonte do pai */
  color: inherit; /* Pega a cor do pai */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove qualquer borda ou sublinhado estranho que apareceu */
.dropdown-trigger:focus,
.dropdown-trigger:active {
  outline: none;
  box-shadow: none;
}

/* Ajuste da setinha para não empurrar o texto */
.arrow-down {
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-bottom: 3px; /* Sobe um pouquinho a seta */
}

/* Garante que o menu suspenso não empurre o header para baixo */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* Centraliza o menu abaixo do link */
  background-color: #1a1a1a;
  min-width: 160px;
  z-index: 999;
  display: none; /* Escondido por padrão */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== START TOP PAGE STYLES ===== */

.top-page {
  height: 600px;
  display: flex;
  align-items: center;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ESSA É A MÁGICA: ela faz a imagem preencher o espaço sem esticar */
  object-position: center; /* Garante que o meio da serpentina apareça */
  z-index: 1;
}

.top-page-serpentina {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-page img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.txt-top {
  margin-left: 5%;
  position: relative;
  z-index: 2; /* Garante que o texto fique na frente da imagem */
  padding: 0 5%;
  color: white;
}

.txt-top h1 {
  font-size: 4em;
  max-width: 800px;
}

.txt-top p {
  max-width: 400px;
}

/* ===== END TOP PAGE STYLE ===== */

/* ===== START STYLE ABOUT ===== */

.container-edu {
  max-width: 1600px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 40px;
  align-items: center;
  /* O gradiente abaixo cria a "ponte" visual entre os elementos */
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #121212 70%);
}

.content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.content h1 span {
  color: var(--accent-color);
  display: block;
}

.text-block {
  max-width: 700px;
}

.text-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.highlight {
  color: white;
  font-weight: 600;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  margin: 30px 0;
}

.image-wrapper {
  position: relative;
}

.image-card {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Transição suave para conectar com o fundo */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-card img {
  width: 100%;
  display: block;
  filter: grayscale(20%) contrast(110%);
}

/* Elemento Decorativo de Conexão */
.connector-line {
  position: absolute;
  top: 20%;
  left: -40px;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  z-index: 2;
}

@media (max-width: 768px) {
  .container-edu {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .connector-line {
    display: none;
  }
  .highlight {
    border-left: none;
    padding-top: 15px;
  }
  .responsive {
    font-size: 2.8em !important;
  }
}

.container {
  max-width: 1600px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 40px;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #121212 70%);
  margin: auto;
}

.content .title-s {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.content .title-s span {
  color: var(--accent-color);
  display: block;
}

.text-block p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.highlight {
  color: white;
  font-weight: 600;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  margin: 30px 0;
}

.image-wrapper {
  position: relative;
}

.image-card {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Transição suave para conectar com o fundo */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-card img {
  width: 100%;
  display: block;
  filter: grayscale(20%) contrast(110%);
}

/* Elemento Decorativo de Conexão */
.connector-line {
  position: absolute;
  top: 20%;
  left: -40px;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  z-index: 2;
}

.historia {
  padding: 60px 10%;
  font-family: "Inter", sans-serif; /* Ou a fonte que você já usa */
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

/* Inverte a ordem das colunas apenas no desktop */
.row.inverter {
  flex-direction: row-reverse;
}

.col-img {
  flex: 1;
}

.col-img2 {
  display: grid;
  /* Cria duas colunas de tamanhos iguais */
  grid-template-columns: repeat(2, 1fr);
  /* Espaçamento entre as fotos */
  gap: 15px;
  /* Garante que o grid ocupe a largura total disponível */
  width: 100%;
}

.col-img img {
  border-radius: 8px;
}

.col-img2 img {
  width: 100%;
  height: auto;
  /* Mantém a proporção das fotos e preenche o espaço */
  object-fit: cover;
  /* Opcional: arredonda levemente as bordas para um visual moderno */
  border-radius: 8px;
}

/* Responsividade: Em telas muito pequenas (ex: celulares), 
   você pode optar por deixar 1 foto por linha */
@media (max-width: 480px) {
  .col-img2 {
    grid-template-columns: 1fr;
  }
}

.col-img2 img {
  border-radius: 8px; /* Bordas levemente arredondadas ficam ótimas */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.col-txt {
  flex: 1;
}

.col-txt strong {
  color: #fffe04;
}

.col-txt span {
  color: #ffff;
  font-weight: 600;
}

.col-txt h2 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.col-txt p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #d4d4d4;
}

/* Responsividade para Celular */
@media (max-width: 768px) {
  .row,
  .row.inverter {
    flex-direction: column;
    text-align: center;
  }
  .historia {
    padding: 40px 5%;
  }
}
.nova-era-clean {
  padding: 80px 10%;
  background-color: #ffffff; /* Fundo limpo como o restante do site */
  font-family: "Inter", sans-serif;
}

.header-section {
  margin-bottom: 40px;
}

.detalhe-verde {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #fffe04; /* O verde do seu botão "Entrar em contato" */
  margin-bottom: 15px;
}

.header-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.texto-destaque p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
  max-width: 900px;
  margin-bottom: 40px;
}

/* Galeria de Fotos em linha, sem frescura */
.galeria-atual {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.item-foto {
  flex: 1;
  height: 350px;
  overflow: hidden;
  border-radius: 4px; /* Borda leve para combinar com o botão do header */
}

.item-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%); /* Leve desseclaração para ficar mais industrial */
  transition: 0.3s;
}

.item-foto img:hover {
  filter: grayscale(0%);
}

.footer-parceria {
  border-left: 4px solid #f2f2f2;
  padding-left: 30px;
  margin-top: 40px;
}

.card-final p {
  font-size: 1.1rem;
  color: #666;
  max-width: 750px;
}

.card-final strong {
  color: #1a1a1a;
}

/* Mobile */
@media (max-width: 768px) {
  .galeria-atual {
    flex-direction: column;
  }
  .item-foto {
    height: 250px;
  }
  .img-respon {
    height: 480px;
  }
  .txt-separacao {
    font-size: 2em !important;
  }
  .mva-header h3 {
    font-size: 2.5rem !important;
  }
  .col-txt h2 {
    font-size: 2.5rem;
  }
}

.section-mva {
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #121212 70%);
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: "Inter", sans-serif;
}

/* Texto grande de fundo em contorno */
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03); /* Quase invisível */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}

.mva-content {
  position: relative;
  z-index: 2;
}

.mva-header {
  text-align: center;
  margin-bottom: 70px;
}

.mva-header h3 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mva-header p {
  font-size: 1.5rem;
}

.mva-header h3 span {
  color: #fffe04; /* Verde da marca */
}

.mva-grid {
  display: flex;
  gap: 30px;
}

.mva-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03); /* Efeito vidro fumê */
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 46px;
  transition: 0.4s;
}

/* Destaque sutil no hover */
.mva-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fffe04;
  transform: translateY(-10px);
}

.mva-number {
  display: block;
  font-size: 3.9rem;
  font-weight: 700;
  color: #c59d1e; /* Ouro do logo */
  margin-bottom: 20px;
}

.mva-item h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.mva-item p,
.mva-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0b0;
}

.mva-list {
  list-style: none;
  padding: 0;
}

.mva-list li::before {
  content: "—";
  color: #fffe04;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .mva-grid {
    flex-direction: column;
  }
  .bg-text {
    font-size: 8rem;
  }
}

.main-footer {
  background-color: #ffffff; /* Um tom abaixo do grafite da seção MVA */
  color: #000000;
  padding: 80px 8% 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 300px;
  margin-bottom: 25px;
}

.footer-brand p {
  color: #000000;
  line-height: 1.6;
  max-width: 400px;
}

.footer-nav h4,
.footer-contact h4 {
  color: #fdc304; /* Ouro do logo */
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav ul li a:hover {
  color: #ffb004; /* Verde da marca */
  padding-left: 5px;
}

.footer-contact p {
  color: #070707;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-orange);
  font-size: 24px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.barra-assinatura {
  width: 40px;
  height: 3px;
  background: #fffe04;
  margin: 15px auto 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .footer-contact p {
    justify-content: center;
  }
}
.txt-separacao {
  text-align: center;
  color: #ffffff;
  font-size: 3em;
  max-width: 800px;
  margin: auto;
}

/* ===== END STYLE ABOUT ===== */

/* Estilização para o ícone do Instagram */
.bi-instagram {
  font-size: 2rem; /* Tamanho do ícone (ajuste como quiser) */
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text; /* Faz o fundo aparecer apenas no formato do ícone */
  -webkit-text-fill-color: transparent; /* Deixa o ícone transparente para mostrar o fundo */
  display: inline-block; /* Garante que o gradiente seja aplicado corretamente */
}

/* Efeito opcional ao passar o mouse */
.bi-instagram:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* START BREADCUMP */
.breadcrumb-container {
  padding: 12px 20px;
  border-radius: 8px;
  overflow-x: auto; /* Permite scroll lateral em telas muito pequenas */
  white-space: nowrap; /* Impede que o breadcrumb quebre linha */
}

.breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Estilo do separador (Ícone de seta) */
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #adb5bd;
  border-top: 2px solid #adb5bd;
  transform: rotate(45deg);
  margin: 0 12px;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--primary-orange);
}

.breadcrumb-item.active {
  color: #495057;
  font-weight: 600;
  pointer-events: none; /* O item atual não precisa de clique */
}

/* Ajuste para telas pequenas: esconde a barra de scroll visualmente mas mantém a função */
.breadcrumb-container::-webkit-scrollbar {
  display: none;
}
.breadcrumb-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* END BREADCUMP */

/* ===== START SERPETINA PAGE ===== */

.container-serpentina {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-section {
  background-color: #111; /* Fundo escuro conforme sua imagem */
}

/* Header com fundo escuro (simulando a imagem) */
.services-header {
  background: linear-gradient(rgba(0, 0, 0, 0.89), rgba(0, 0, 0, 0.74));
  color: white;
  padding: 80px 0 150px 0; /* Padding inferior maior para o overlap */
}

.subtitle {
  color: var(--primary-orange);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}

.header-content h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
}

.header-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Container dos Cards */
.services-cards-container {
  margin-top: -80px; /* Faz os cards subirem para cima da imagem */
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: -50px; /* Para criar o efeito de sobreposição se desejar */
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon img {
  height: 50px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f4f4f4;
  color: var(--primary-orange);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}

.service-card:hover .arrow-btn {
  background: var(--primary-orange);
  color: #fff;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  .grid-cards {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

.gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Grid Responsivo Inteligente */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.product-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

/* Container da Imagem com Aspect Ratio */
.image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1; /* Mantém sempre quadrado */
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

/* Overlay que aparece no hover */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .overlay {
  opacity: 1;
}

.overlay span a {
  border: 2px solid #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
}

.product-name {
  padding: 15px;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Grid Responsivo Inteligente */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.product-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

/* Container da Imagem com Aspect Ratio */
.image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1; /* Mantém sempre quadrado */
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

/* Overlay que aparece no hover */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .overlay {
  opacity: 1;
}

.overlay span a {
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  color: white;
  text-decoration: none;
}

.product-name {
  padding: 15px;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.eco-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.eco-tag {
  color: var(--primary-orange); /* Cor de destaque para o setor industrial */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: 15px;
}

.eco-title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 15px 0;
  line-height: 1;
}

.eco-desc {
  color: #999;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ===== END SERPETINA PAGE ===== */

/* ------- START STYLE CTA -------*/
/* Botões */
.button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(255, 157, 0, 0.3);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 157, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid #444;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Indicadores de confiança */
.trust-indicators {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #4ade80; /* Verde */
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Lado Direito (Features) */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-box {
  background: rgba(255, 157, 0, 0.1);
  color: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
}

.feature-item h4 {
  color: var(--text-white);
  margin: 0;
}

.feature-item p {
  margin: 0;
  font-size: 13px;
}

/* Rodapé Depoimentos */
.testimonials {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #333;
  padding-top: 30px;
  gap: 20px;
}

.testimonial-item p {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 5px;
}

.testimonial-item small {
  color: var(--text-gray);
  font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr !important;
  }
}

.cta-wrapper {
  width: 90%;
  max-width: 1700px;
  padding: 20px;
  margin: auto;
}

.cta-container {
  background: linear-gradient(145deg, #000000, #141414);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: 1px solid #333;
}

.badge {
  background: rgba(255, 157, 0, 0.1);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 157, 0, 0.2);
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.cta-left h1 {
  color: var(--text-white);
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-left h1 span {
  color: var(--primary-color);
}

.cta-left p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}
/* ------- END STYLE CTA ------- */

/* ------- START STYLE WHY-CHOOSE-US -------*/

.why-choose-us {
  padding: 100px 20px;
  background-color: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}

.container-choose-us {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* --- LADO ESQUERDO (VISUAL) --- */
.image-container {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.main-image {
  position: relative;
  z-index: 2;
}

.main-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: grayscale(20%) contrast(110%);
}

/* Forma Metálica Atrás */
.accent-bg-shape {
  position: absolute;
  width: 105%;
  height: 105%;
  background-color: var(--accent-color);
  top: -15px;
  left: -15px;
  z-index: 1;
  border-radius: 4px;
  opacity: 0.8;
}

/* Pontilhado Industrial */
.dot-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: -30px;
  background-image: radial-gradient(
    var(--accent-color) 1.5px,
    transparent 1.5px
  );
  background-size: 15px 15px;
  z-index: 3;
  opacity: 0.4;
}

/* Badge de Experiência */
.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(
    --bg-dark
  ); /* Texto escuro sobre o fundo metálico para contraste */
  padding: 20px 30px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-icon {
  font-size: 35px;
}

.years {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- LADO DIREITO (TEXTO) --- */
.content-container {
  flex: 1;
  min-width: 350px;
}

.subtitle-choose-us {
  color: var(--primary-orange);
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.title-choose-us {
  font-size: 42px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.title-choose-us .highlight {
  color: var(--accent-color);
}

.description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 17px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--white);
}

.features-list i {
  color: var(--accent-color);
  font-size: 22px;
}

.features-list strong {
  color: var(--accent-color);
}

/* Botão CTA */
.cta-button {
  display: inline-block;
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.cta-button:hover {
  background-color: var(--accent-color);
  color: var(--bg-dark);
  transform: translateY(-5px);
}
/* ------- END STYLE WHY-CHOOSE-US ------- */

/* ------- START STYLE ESPECIFICAÇÕES ------- */
/* Seção Técnica Edu Tubos */
.tech-specs-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.tech-subtitle {
  color: var(--primary-orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.tech-title {
  font-size: 2.5rem;
  color: #222;
  margin: 10px 0 20px;
}

.tech-description {
  color: #666;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.tech-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  color: black;
}

.tech-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #333;
  border-left: 5px solid var(--primary-orange);
  padding-left: 15px;
}

/* Tabela */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th {
  text-align: left;
  padding: 12px;
  background: #f8f8f8;
  color: #555;
  font-size: 0.9rem;
}

.specs-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #eee;
  color: #444;
}

/* Lista de Diferenciais */
.tech-list {
  list-style: none;
  padding: 0;
  color: black;
}

.tech-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.tech-list li i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 3px;
}

/* Aplicações */
.tech-applications {
  background: #222;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.tech-applications h4 {
  color: var(--primary-orange);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.apps-grid span {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.apps-grid i {
  color: var(--primary-orange);
  margin-right: 10px;
  font-size: 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-title {
    font-size: 2rem;
  }
}
/* ------- END STYLE ESPECIFICAÇÕES ------- */

/* ------- START STYLE FEIXES TUBULARES ------- */

.feixe-tubular-info {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.tech-subtitle {
  color: var(--primary-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.tech-title {
  font-size: 2.5rem;
  color: #222;
  margin-top: 10px;
}

.tech-description {
  max-width: 800px;
  margin: 20px auto;
  color: #666;
  line-height: 1.7;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tech-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-orange);
}

.tech-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.tech-list {
  list-style: none;
  padding: 0;
}

.tech-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #444;
}

.tech-list li i {
  color: var(--primary-orange);
  margin-right: 10px;
  font-size: 1.1rem;
}

.quality-commitment {
  background: #222;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.quality-commitment h4 {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.quality-commitment p {
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}
/* ------- END STYLE FEIXES TUBULARES ------- */

/* ------- START STYLE CONTACT ------- */
.contact-container {
  background: white;
  width: 90%;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  margin: 10% auto;
}

/* Coluna da Esquerda: Formulário */
.form-section {
  flex: 1.5;
  padding: 40px;
  min-width: 300px;
}

.form-section h2 {
  color: #0d233e;
  margin-bottom: 10px;
}

.form-section p {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  font-size: 0.85em;
  margin-bottom: 8px;
  color: #333;
}

input,
textarea {
  padding: 12px 15px;
  border: 1px solid #e1e8ee;
  border-radius: 8px;
  background-color: #fcfdfe;
  outline: none;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #0d233e;
}

.btn-send {
  background-color: #f39200;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  float: right;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-send:hover {
  background-color: #ffc400;
  color: #000;
}

/* Coluna da Direita: Informações de Contato */
.info-section {
  flex: 1;
  background-color: #f39200;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 13px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-card i {
  font-size: 1.2em;
}
.info-text span {
  display: block;
  font-size: 0.8em;
  opacity: 0.8;
}
.info-text strong {
  font-size: 1em;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .info-section {
    order: -1;
  } /* Info aparece no topo no mobile */
}
/* ------- END STYLE CONTACT ------- */

/* ------- START STYLE CLIENTES ------- */
.section-container {
  padding: 100px 20px;
  background-image:
    radial-gradient(
      circle at top right,
      rgba(196, 164, 124, 0.05),
      transparent 40%
    ),
    linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

/* GRID DE CLIENTES */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.client-card {
  position: relative;
  height: 280px; /* Aumentado para dar mais presença */
  background: var(--card-base);
  border: 1px solid rgba(196, 164, 124, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Container da logo ocupando 100% */
.logo-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Espaçamento interno para a logo não encostar na borda */
  transition: transform 0.4s ease;
}

.logo-container img,
.logo-container svg {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Faz a logo ocupar o máximo de espaço sem distorcer */
  transition: all 0.5s ease;
}

/* Conteúdo do Hover - CORRIGIDO E CENTRALIZADO */
.hover-details {
  position: absolute;
  bottom: 0;
  left: 0; /* Corrigido de -10px para 0 */
  width: 100%;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
  border-bottom: 4px solid var(--primary-orange);
  z-index: 2;
}

.client-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.client-sector {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- EFEITOS DE HOVER --- */
.client-card:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.client-card:hover .logo-container {
  transform: translateY(-20px); /* Sobe menos para manter a logo visível */
}

.client-card:hover .logo-container img {
  filter: grayscale(0%);
  opacity: 0.5;
  transform: scale(0.9); /* Reduz levemente para focar no texto */
}

.client-card:hover .hover-details {
  transform: translateY(0);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
}

.tech-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 15px;
  position: relative;
}
/* Linha decorativa laranja abaixo do badge */
.tech-badge::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-orange);
  margin: 5px auto 0;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin: 0 0 20px 0;
}

.section-header h2 strong {
  font-weight: 700;
  color: var(--accent-color); /* Destaque metálico */
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ------- END STYLE CLIENTES ------- */

.container-produtos {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-secao {
  text-align: center;
  padding: 80px;
  margin-bottom: 40px;
}

.titulo-secao h2 {
  font-size: 3em;
}

/* Sistema de Grid (3 Colunas) */
.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
  gap: 30px; /* Espaço entre os cards */
}

/* Estilização do Card */
.card-produtos {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-produtos:hover {
  transform: translateY(-5px); /* Efeito de flutuar ao passar o mouse */
}

/* Ajuste das Imagens */
.card-produtos img {
  width: 100%;
  height: 400px; /* Altura fixa para alinhar os cards */
  object-fit: cover; /* Faz a imagem preencher o espaço sem achatar */
  border-bottom: 4px solid var(--primary-color); /* Detalhe visual industrial */
}

/* Texto do Card */
.card-conteudo {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
}

.card-conteudo h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: rgb(32, 32, 32);
}

.card-conteudo p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}


.testimonials-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  font-family: "Segoe UI", Roboto, sans-serif;
}

.container-depoimentos {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

.section-header h2 {
  color: var(--primary-blue);
  font-size: 36px;
  margin: 10px 0;
}

.section-header p {
  color: var(--text-gray);
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--accent-blue);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffb400;
  margin-bottom: 20px;
  font-size: 18px;
}

.feedback {
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  min-height: 200px;
  margin-bottom: 25px;
  font-size: 16px;
}

.user-info {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.user-details strong {
  display: block;
  color: var(--primary-blue);
  font-size: 16px;
}

.user-details span {
  color: #8898aa;
  font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}

.industrial-section {
  max-width: 1200px;
  margin: 0 auto;
  background:
    linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95)),
    url("../imagens/picture-wht-choose-us.avif") center/cover;
  border-radius: 40px;
  color: var(--text-white);
  overflow: hidden;
  padding: 80px 50px 50px 50px;
  text-align: center;
  border: 1px solid rgba(243, 146, 0, 0.1); /* Brilho sutil laranja na borda */
}

.content-wrap {
  max-width: 850px;
  margin: 0 auto 100px auto;
}

.content-wrap h1 {
  color: var(--primary-orange);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.content-wrap p {
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Botão Principal */
.btn-orange {
  background-color: var(--primary-orange);
  color: #000; /* Texto preto no botão laranja gera alto contraste */
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 146, 0, 0.3);
  filter: brightness(1.1);
}

/* Barra de Atributos Inferior */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--card-border);
  padding-top: 50px;
}

.stat-card {
  padding: 0 20px;
  border-right: 1px solid var(--card-border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card h3 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.stat-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ajustes para telas menores */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .stat-card {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .industrial-section {
    padding: 50px 20px 30px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .content-wrap h1 {
    font-size: 2.2rem;
  }
}

.col-img-equipe img {
  height: 550px;
}
