/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  background: #1a1a1a;
  color: #f0f0f0;
}
a {
  text-decoration: none !important;
}

/* Cabeçalho */
.container-fluid.cor1 {
  background: #1f1f1f;
  padding: 20px 40px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: #f0f0f0 !important;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s ease;
 
}

a:hover {
  color: #00d1ff !important;
}

/* Imagem do logo */
.rounded-circle {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

/* Carrossel */
.carousel-inner img {
  height: 500px;
  object-fit: cover;
  filter: brightness(90%);
}

/* Seções */
section {
  padding: 80px 20px;
}

#colfundo {
  background-color: rgba(30, 30, 30, 0.9);
  padding: 40px;
  border-radius: 12px;
}

#quemsomos h2,
#fazemos h2 {
  font-size: 2rem;
  color: #00d1ff;
  margin-bottom: 20px;
}

#p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

/* Imagens */
.fotos {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Formulário */
form {
  background-color: #2b2b2b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-label {
  color: #f0f0f0;
}

.form-control {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
}

button {
  background-color: #00d1ff;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #00aacc;
  color: #fff;
}

/* Rodapé */
.container-fluid.cor2 {
  background-color: #111;
  padding: 60px 20px;
}

.icone, .icone1 {
  width: 40px;
  height: auto;
  margin: 0 10px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.icone:hover, .icone1:hover {
  transform: scale(1.1);
  filter: invert(0.7) hue-rotate(200deg);
}

hr {
  border-color: #555;
  margin: 20px auto;
  max-width: 400px;
}


/* Responsividade */
@media (max-width: 1200px) {
  .carousel-inner img {
    height: 450px;
  }
}

@media (max-width: 992px) {
  #quemsomos .row,
  #fazemos .row {
    flex-direction: column;
    text-align: center;
  }

  #quemsomos img,
  #fazemos img {
    margin-bottom: 20px;
  }

  .carousel-inner img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    justify-content: center;
  }

  .carousel-inner img {
    height: 300px;
  }

  form {
    padding: 20px;
  }

  section {
    padding: 60px 15px;
  }
}

@media (max-width: 576px) {
  #quemsomos h2,
  #fazemos h2 {
    font-size: 1.5rem;
  }

  .carousel-inner img {
    height: 250px;
  }

  button {
    padding: 10px;
    font-size: 0.9rem;
  }
}
/*oi*/
