/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar2 {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  padding: 1rem 2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo2 {
  align-items: left;
  max-width: 50%;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav2 {
  display: flex;
  gap: 2rem;
}

.nav2 a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger2 {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger2 span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s;
}

.hamburger2.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger2.open span:nth-child(2) {
  opacity: 0;
}

.hamburger2.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  .nav2 {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    padding: 1rem 2rem;
    display: none;
    width: 100%;
  }

  .nav2.active {
    display: flex;
  }

  .hamburger2 {
    display: flex;
  }
}

/* HERO SECTION */
.hero2 {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.video-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-container2 {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-text2 {
  max-width: 600px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hero-text2.visible {
  opacity: 1;
  transform: translateY(0);
}

.tagline2 {
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-text2 h1 {
  text-align: left;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text2 p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.hero-buttons2 {
  display: flex;
  gap: 1rem;
}

.btn-primary2 {
  background-color: orange;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn-secondary2 {
  color: white;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-secondary2:hover {
  text-decoration: underline;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* <-- aqui você ajusta a opacidade */
  z-index: 0;
}






/* SECTION ABOUT */
.about2 {
  padding: 5rem 2rem;
  background: #fff;
}

.about-container2 {
  display: flex;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-left2 {
  flex: 1;
  min-width: 300px;
}

.about-tag2 {
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.about-left2 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.highlight2 {
  font-weight: bold;
  border-left: 3px solid orange;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.about-left2 p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-buttons2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.play-icon2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(white 60%, black 60%);
  border-radius: 50%;
  position: relative;
}

.play-icon2::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 16px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.about-right2 {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-right2 img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.experience-label2 {
  position: absolute;
  left: -40px;
  top: 30%;
  background: orange;
  color: white;
  font-weight: bold;
  transform: rotate(-90deg);
  transform-origin: left top;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-text2 h1 {
    font-size: 2.2rem;
  }

  .about-container2 {
    flex-direction: column;
  }

  .experience-label2 {
    position: static;
    transform: none;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .about-right2 {
    order: -1;
    text-align: center;
  }
}






/* Animação padrão de entrada */
.animate-up2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-up2.visible2 {
  opacity: 1;
  transform: translateY(0);
}

.why-choose2 {
  padding: 80px 20px;
  background: #fff;
}

.container-why2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap; /* para ficar lado a lado no desktop */
}

.left2 {
  flex: 0 0 40%; /* 40% da largura disponível */
}

.left2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.right2 {
  flex: 1;          /* ocupa o restante do espaço */
  max-width: 55%;   /* limite para evitar esticar demais */
  animation: fadeInUp2 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle2 {
  color: #f15a24;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.title2 {
  font-size: 32px;
  font-weight: 800;
  margin: 10px 0;
  color: #111;
}

.desc2 {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.stats2 {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.stat2 .number2 {
  font-size: 30px;
  color: #f15a24;
  font-weight: bold;
}

.progress-group2 label {
  display: block;
  font-weight: 600;
  margin: 10px 0 5px;
}

.progress-bar2 {
  background: #eee;
  height: 10px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress2 {
  background: #f15a24;
  height: 100%;
  color: #000;
  text-align: right;
  font-size: 12px;
  padding-right: 5px;
  font-weight: bold;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .container-why2 {
    flex-wrap: wrap;        /* permite quebra */
    flex-direction: column; /* empilha verticalmente */
    text-align: center;
  }

  .left2, .right2 {
    flex: unset;
    max-width: 100%;
  }

  .stats2 {
    justify-content: center;
  }

  .progress2 {
    text-align: center;
    padding-right: 0;
  }
}







 .section3 {
      padding: 80px 20px;
      background: #fff;
      text-align: center;
    }

    .container3 {
      max-width: 1200px;
      margin: 0 auto;
    }

    .subtitle3 {
      color: #f97316;
      font-weight: bold;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .title3 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 60px;
    }

    .grid3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card3 {
      padding: 40px 30px;
      background: #fff;
      border-top: 1px solid #eee;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .card3.visible3 {
      opacity: 1;
      transform: translateY(0);
    }

    .icon3 {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #f97316;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .icon3 img {
      width: 30px;
      height: 30px;
    }

    .type3 {
      color: #f97316;
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 5px;
    }

    .name3 {
      font-size: 20px;
      font-weight: bold;
      margin: 5px 0;
    }

    .desc3 {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .link3 {
      font-weight: bold;
      text-decoration: none;
      color: #000;
      font-size: 13px;
    }






  .contact-section4 {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }
  .container-contact4 {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }

  /* Left Side */
  .left-contact4 {
    flex: 1 1 450px;
  }
  .subtitle-contact4 {
    display: inline-block;
    color: #f66a0a;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .title-contact4 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .description-contact4 {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 400px;
  }
  .info-item-contact4 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .icon-circle-contact4 {
    background-color: #f66a0a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
  }
  .icon-circle-contact4 img {
    width: 24px;
    height: 24px;
    filter: invert(1);
  }
  .info-label-contact4 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
  }
  .info-text-contact4 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
  }

  /* Right Side */
  .right-contact4 {
    flex: 1 1 450px;
  }
  .form-title-contact4 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-form4 {
    width: 100%;
  }
  .form-row-contact4 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form-row-contact4 label {
    flex: 1 0 70px;
    font-weight: 700;
    font-size: 14px;
  }
  .form-row-contact4 input,
  .form-row-contact4 textarea {
    flex: 3 1 auto;
    padding: 12px 15px;
    border: none;
    background: #f6f6f6;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
    resize: vertical;
  }
  .form-row-contact4 textarea {
    flex-basis: 100%;
  }
  .submit-btn-contact4 {
    width: 100%;
    background: linear-gradient(90deg, #f66a0a, #e55200);
    border: none;
    padding: 15px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  .submit-btn-contact4:hover {
    background: linear-gradient(90deg, #e55200, #f66a0a);
  }

  /* Responsive */
  @media (max-width: 850px) {
    .container-contact4 {
      flex-direction: column;
    }
    .form-row-contact4 {
      flex-direction: column;
    }
    .form-row-contact4 label,
    .form-row-contact4 input,
    .form-row-contact4 textarea {
      flex: none;
      width: 100%;
    }
  }

  /* Animation */
  .animate-scroll4 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
  }
  .animate-scroll4.visible4 {
    opacity: 1;
    transform: translateY(0);
  }




  /* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Seção hero com vídeo de fundo */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay preto com opacidade ajustável - altere o 0.4 para o valor desejado */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Ajuste a opacidade aqui (0 a 1) */
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 1;
}

.hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-title span {
    display: block;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .video-background {
        width: 100%;
        height: 100%;
    }
}






/* Cores temáticas */
:root {
    --primary-color: #2c4e80;
    --secondary-color: #4a6fa5;
    --accent-color: #ff9e1b;
    --dark-color: #1a2c4d;
    --light-color: #e8f1ff;
}

/* Seção Blog */
.blog-section5 {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.blog-header5 {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blog-header5.animate5 {
    opacity: 1;
    transform: translateY(0);
}

.blog-title5 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.blog-title5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: orange;
}

.blog-subtitle5 {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
    margin-top: 20px;
}

.blog-grid5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card5 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: calc(var(--order) * 0.1s);
}

.blog-card5.animate5 {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-image5 {
    height: 200px;
    overflow: hidden;
}

.blog-card-image5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card5:hover .blog-card-image5 img {
    transform: scale(1.05);
}

.blog-card-header5 {
    background: orange;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content5 {
    padding: 25px;
}

.blog-card-title5 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-card5:hover .blog-card-title5 {
    color: var(--accent-color);
}

.blog-card-text5 {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-link5 {
    display: block;
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.blog-link5.animate5 {
    opacity: 1;
    transform: translateY(0);
}

.blog-link5 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.blog-link5 a:hover {
    color: var(--accent-color);
}

.blog-link5 a::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s;
}

.blog-link5 a:hover::after {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-section5 {
        padding: 60px 15px;
    }
    
    .blog-title5 {
        font-size: 2rem;
    }
    
    .blog-subtitle5 {
        font-size: 1rem;
    }
    
    .blog-grid5 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-image5 {
        height: 180px;
    }
}






        .footer-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: black;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-brand {
            flex: 1 1 300px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        
        .footer-brand h1 {
            font-size: 28px;
            color: orange;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .footer-brand p {
            color: white;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .support-contact {
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
        
        .phone-number {
            font-size: 18px;
            color: orange;
            font-weight: 600;
        }
        
        .divider {
            width: 100%;
            height: 1px;
            background-color: #e0e0e0;
            margin: 20px 0;
        }
        
        .footer-column {
            flex: 1 1 200px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-column h2 {
            font-size: 20px;
            color: orange;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #000;
        }
        
        .post-item {
            margin-bottom: 20px;
        }
        
        .post-title {
            font-weight: 600;
            color: orange;
            margin-bottom: 5px;
        }
        
        .post-date {
            font-size: 14px;
            color: white;
        }
        
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            color: white;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .footer-column {
                flex: 1 1 100%;
            }
        }






        .quem-somos {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #333;
}

.container-quem {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quem-texto {
  flex: 1 1 500px;
}

.quem-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: orange; /* cor esverdeada, ajuste conforme sua identidade visual */
}

.quem-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.quem-imagem {
  flex: 1 1 400px;
  text-align: center;
}

.quem-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  
}




.missao-visao-proposito {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem;
}

.container-mvp {
  max-width: 800px;
  margin: 0 auto;
}

.titulo-mvp {
  color: orange;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.mvp-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.mvp-titulo {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  color: orange;
  cursor: pointer;
  padding: 1rem;
  transition: background 0.3s ease;
}

.mvp-titulo:hover {
  background-color: #111;
}

.mvp-conteudo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.mvp-conteudo p {
  margin: 1rem 0;
  color: #fff;
}





    .contato-container {
      max-width: 600px;
      margin: 4rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    h2 {
      text-align: center;
      color: #333;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      color: #444;
    }

    input, textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    textarea {
      resize: vertical;
      height: 120px;
    }

    button {
      width: 100%;
      padding: 1rem;
      background-color: #25D366;
      border: none;
      color: white;
      font-size: 1.1rem;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background-color: #1ebc59;
    }






    .faq-container {
      max-width: 900px;
      margin: 4rem auto;
      padding: 2rem;
      background-color: #1c1c1c;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
    }

    h1 {
      text-align: center;
      color: orange;
      margin-bottom: 2rem;
    }

    .faq-item {
      margin-bottom: 1.5rem;
      border-bottom: 1px solid #333;
    }

    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.2rem;
      font-weight: bold;
      padding: 1rem;
      cursor: pointer;
      color: orange;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background-color: #222;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 1rem;
      color: #ddd;
    }

    .faq-answer p {
      margin: 1rem 0;
    }

    .faq-question.active + .faq-answer {
      max-height: 400px;
    }

    @media (max-width: 600px) {
      .faq-container {
        margin: 2rem 1rem;
      }

      .faq-question {
        font-size: 1rem;
      }
    }




  


.nossos-minerios7 {
  padding: 2rem 1rem;
  background-color: black;
  text-align: center;
}

.nossos-minerios7 h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: orange;
}

  .minerios-section7 {
  background: whitesmoke;
  padding: 2rem 1rem;
  overflow-x: auto;
}

.minerios-container7 {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem;
}

.minerio7 {
  flex: 0 0 auto;
  scroll-snap-align: center;
  position: relative;
  border-radius: 12px;
  padding: 0 1rem;
}

/* Oculta o checkbox */
.toggle7 {
  display: none;
}

.minerio7 label {
  display: block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Imagem */
.minerio7 img {
  height: auto;
  width: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Nome do minério */
.minerio7 span {
  display: block;
  
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Exibe o nome ao clicar */
.toggle7:checked + label span {
  opacity: 1;
}






.contact-industry-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #111;
  color: white;
  padding: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-box {
  display: flex;
  flex: 1;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 300px;
}

.contact-info .icon {
  font-size: 40px;
  color: orange;
}

.contact-info .text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.industry-box {
  background-color: orange;
  color: white;
  padding: 30px;
  max-width: 400px;
  margin-left: auto;
}

.industry-box h2 {
  font-size: 28px;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.industry-box p {
  font-size: 16px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contact-industry-section {
    flex-direction: column;
  }

  .contact-box {
    flex-direction: column;
    gap: 30px;
  }

  .industry-box {
    margin-left: 0;
    margin-top: 40px; /* espaço extra na versão mobile */
  }
}






.latest-projects {
  text-align: center;
  padding: 80px 40px;
  background-color: #fff;
}

.latest-header .subtitle {
  color: orange;
  font-weight: bold;
  margin-bottom: 10px;
}

.latest-header h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: #111;
}

.project-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}

.project-card {
  width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-align: left;
}

.project-info .date {
  font-size: 14px;
  margin-bottom: 5px;
}

.project-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}






.team-section {
  padding: 60px 40px;
  text-align: center;
  background-color: white;
}

.team-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.team-member {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
 
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #111;
}

.team-member p {
  font-size: 14px;
  color: #777;
}

/* Responsivo */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
