* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
  border-bottom: 2px solid #ff6600;
}

.logo {
  flex: 1;
}
 .nav {
  flex: 2;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff6600;
}

.carousel {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  text-align: center;
  padding: 40px;
  display: none;
}

.slide.active {
  display: block;
}

.slide h1 {
  font-size: 2.5rem;
  color: #fff;
}

.slide p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

.slide button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.about,
.clients {
  text-align: center;
  padding: 60px 40px;
  background-color: #0d0d0d;
}

.about h2,
.clients h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  color: #ccc;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;         /* Para quebrar em várias linhas caso não caibam */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;
  gap: 40px;                /* Espaçamento entre os logos */
  margin-top: 30px;
}

.client-box {
  background-color: transparent;
  padding: 10px;
  flex: 1 1 150px;
  text-align: center;
  border-radius: 8px;
}


.client-box img {
  width: 150px;            /* Tamanho fixo para manter consistência */
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  border-radius: 8px;
}

.client-box img:hover {
  filter: grayscale(0%);
}


.footer {
  background-color: #121212;
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #FF7A30;
  font-size: 24px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: #FF7A30;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #FF7A30;
}

.footer hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #FF7A30;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #999;
}
 
.social-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icons a i {
  font-size: 20px;
  color: #ff6600;
  text-shadow: 0 0 5px #ff6600, 0 0 10px #ff6600;
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a i:hover {
  transform: scale(1.2);
  filter: brightness(1.5);
}