.servicos {
  padding: 40px 20px;
  text-align: center;
}

  background: linear-gradient(to right, #00d4ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

.servicos h1, h2 {
  background: linear-gradient(to right, #00d4ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: #002147;
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); /* sombra mais escura e profunda */
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #001530;
}

.card p {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}

/* Tipografia geral */
h1, h2 {
  color: #001530; /* Títulos principais com contraste elevado */
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

* {
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Bloco principal */
.main {
  background: linear-gradient(180deg, #f1f6fb, #ffffff 80%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.main p {
  color: #222222; /* Texto principal bem escuro, mas suave */
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Cabeçalho */
.header {
  background-color: #000b1a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: auto;
}

/* Rodapé */
.footer {
  background-color: #002147;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo {
  height: 140px;
  margin: 0;
  padding: 0;
  display: block;
  transition: filter 0.3s ease-in-out;
}

.logo:hover {
  filter: drop-shadow(0 0 6px #00ffff);
}

/* Menu */
.menu {
  display: flex;
  gap: 20px;
  font-weight: bold;
  font-size: 16px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 10px 5px;
}

.menu a:hover {
  text-decoration: underline;
}

/* Toggle menu mobile */
.menu-toggle {
  display: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: white;
  }
}

/* Fundo de partículas */
#particulas-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: transparent;
}

/* --- Estilos específicos para carrossel da Pizzaria Ágatha --- */
.carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 64, 0.6); /* azul escuro com transparência */
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
}

/* --- Estilos específicos para CTE IA Connect --- */
.solucao-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.solucao-container h1 {
  color: #002147;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.solucao-container p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 30px;
}

.solucao-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu img.menu-btn {
  max-height: 40px;
  height: auto;
}

.linha-personalizada {
  border: none;
  height: 2px;
  background-color: #002147; /* Azul escuro da CTE */
  margin: 40px 0;
  width: 100%;
}