/* Evita rolagem lateral */
html, body {
  overflow-x: hidden;
}

/* ====== RESET BÁSICO (opcional se já estiver no reset.css) ====== */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ====== CONTAINERS E ESTRUTURA ====== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 40px 0;
}

h1, h2, h3 {
  color: #8b0000;
  margin-bottom: 10px;
}

p, li {
  color: #333;
}

/* ====== BLOCO DE BOAS-VINDAS ====== */
.boas-vindas {
  text-align: center;
  padding: 60px 20px;
  background-color: #f0fff0;
}

.boas-vindas h1 {
  font-size: 2.5rem;
  color: green;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ====== CONTATO ====== */
.contato-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  background-color: #fdfdfd;
  max-width: 1000px;
  margin: 0 auto;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 280px;
  max-width: 100%;
}

.contato-item img {
  width: 50px;
  height: 50px;
}

.contato-item h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #8b0000;
}

.contato-item p {
  font-size: 1rem;
  margin: 2px 0 0;
}

/* ====== RESPONSIVO PARA CELULARES E TABLETS ====== */
@media (max-width: 768px) {
  .contato-box {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .contato-item {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
    padding: 15px;
  }

  .contato-item img {
    width: 40px;
    height: 40px;
  }

  .contato-item h3 {
    font-size: 1rem;
  }

  .contato-item p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 1020px){
  .nav-container, .main-menu, .menu-solucoes-wrapper{
    display: none;
  }
}



.banner-carousel {
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

