/* Estilos base para mobile (mobile first) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
  }
.parallax-bg {
  height: 100vh;
  background-image: 
    linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(13, 71, 161, 0.7)),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

#particles-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(90deg, #00ccff, #0d47a1, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300%;
  animation: shine 5s linear infinite;
}
@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  min-height: 1.8rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  background: linear-gradient(45deg, #0d47a1, #00ccff);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.4);
}
.btn:hover {
  background: linear-gradient(45deg, #00ccff, #0d47a1);
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.8);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #00ccff;
  color: #00ccff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #00ccff;
  color: #fff;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tech-icons div {
  text-align: center;
  color: #00ccff;
  font-size: 1.1rem;
}
.tech-icons i {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Nossos números */
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stats div {
  text-align: center;
}
.stats h3 {
  font-size: 2rem;
  color: #00ccff;
}
.stats p {
  color: #ccc;
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .stats { gap: 30px; }
}
  .container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  /* NavBar mobile */
  .navbar {
    flex-direction:row;
    gap: 10px;
  }
  
  /* Portfolio grid em uma coluna */
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Botões responsivos */
  .btn, .btn-cta, .btn-consultoria {
    display: block;
    width: 60%;
    text-align: center;
  }
  
  /* Consultoria, CTA, Métricas, etc. */
  .consultoria-box,
  .metricas-grid {
    flex-direction: column;
  }
  
  /* WhatsApp flutuante sobe em mobile */
  .whatsapp-float {
    bottom: 90px;
  }
  @media (min-width: 768px) {
    /* Navbar horizontal */
    .navbar {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .consultoria-box {
      flex-direction: row;
    }
  
    .metricas-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .metricas-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .container {
      max-width: 1200px;
    }
  }
/* ===== Seção Destaques ===== */
.destaques {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  color: #0d47a1;
}

.destaques h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0d47a1;
}

.destaques h3 span {
  color: #00bcd4;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 15px;
  width: 300px;
  padding: 40px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6e6e6;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #00bcd4;
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.25);
}

/* Ícone */
.icon {
  font-size: 2.8rem;
  color: #00bcd4;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* Texto */
.card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0d47a1;
  font-weight: 600;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Efeito decorativo sutil */
.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,188,212,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover::before {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 350px;
  }
}

/* ===== Seção de Serviços ===== */
.servicos-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  color: #0d47a1;
}

/* Cabeçalho */
.servicos-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.servicos-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #00bcd4;
  margin: 10px auto 20px;
  border-radius: 5px;
}

.servicos-header p {
  color: #555;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 10px;
}

.servicos-header span {
  color: #00bcd4;
  font-weight: 600;
}

/* Filtros */
.filtros {
  margin: 2rem 0;
}

.filtros button {
  background: transparent;
  border: 2px solid #0d47a1;
  color: #0d47a1;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  margin: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filtros button:hover,
.filtros button.ativo {
  background-color: #0d47a1;
  color: #fff;
  box-shadow: 0 0 10px rgba(13,71,161,0.4);
}

/* Grid de Serviços */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.service {
  background: #f8f8f8;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,188,212,0.25);
}

.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 1rem 1.5rem;
}

.service-content h3 {
  color: #0d47a1;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-content p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.botao-orcamento {
  display: inline-block;
  margin: 1rem auto;
  background: #0d47a1;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.botao-orcamento:hover {
  background: #00bcd4;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,188,212,0.4);
}

/* Botão "Ver Mais" */
.ver-mais {
  margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .service img {
    height: 160px;
  }
}

/* ===== Sobre a Empresa ===== */
.sobre-empresa {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sobre-empresa::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(13, 71, 161, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.sobre-empresa h2 {
  font-size: 2.2rem;
  color: #0d47a1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.sobre-empresa p {
  font-size: 1.1rem;
  color: #333;
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

.btn-sobre {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0d47a1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-sobre:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* ===== Portfólio ===== */
.portfolio {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  font-size: 1.2rem;
  color: #0d47a1;
  margin-bottom: 8px;
}

.portfolio-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.btn-portfolio {
  margin-top: 50px;
  display: inline-block;
  padding: 14px 32px;
  background-color: #0d47a1;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-portfolio:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .sobre-empresa p,
  .section-subtitle {
    font-size: 1rem;
  }

  .portfolio-grid {
    gap: 25px;
  }

  .portfolio-content h3 {
    font-size: 1.1rem;
  }
}
/* ===== Seção Depoimentos ===== */
  .depoimentos {
    background-color: #f0f8ff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .depoimento {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .depoimento:hover {
    transform: translateY(-5px);
  }
  
  .comentario {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .cliente-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cliente-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid#0d47a1;
  }
  
  .cliente-info strong {
    color: #0d47a1;
  }
  
  .metricas {
    background: linear-gradient(180deg, #eaf4ff, #ffffff);
    padding: 100px 20px;
    text-align: center;
  }
  
  .metricas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }
  
  .metrica-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.05);
    transition: transform 0.3s ease;
  }
  
  .metrica-item:hover {
    transform: translateY(-6px);
  }
  
  .numero {
    font-size: 48px;
    font-weight: bold;
    color: #0d47a1;
    margin-bottom: 10px;
  }
  
  .metrica-item p {
    font-size: 16px;
    color: #333;
  }
  
 
  .consultoria {
  position: relative;
  padding: 100px 20px;
  background: #0d47a1; /* fallback */
  background: linear-gradient(135deg, #1e1e2f, #0d47a1);
  color: white;
  overflow: hidden;
  z-index: 1;
}
 .consultoria::before,
 .consultoria::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,  rgba(0, 216, 255, 0.05) 9px, transparent 9px 20%, transparent 20%);
  background-size: 50px 50px;
  animation: bubbles 30s linear infinite;
  z-index: 0;
}

 .consultoria::after {
  animation-delay: 2s;
}

@keyframes bubbles {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100%) rotate(360deg);
  }
}

 .consultoria> * {
  position:relative;
  z-index: 1;
}
/* Conteúdo da section sobre o fundo animado */
 .consultoria .conteudo {
  position: relative;
  z-index: 2;
}

/* Fundo animado com ondas circulares em toda a section */
 .consultoria::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: 
    radial-gradient(circle, rgba(0, 216, 255, 0.15) 3px, transparent 3px),
    radial-gradient(circle, rgba(0, 216, 255, 0.1) 6px, transparent 6px),
    radial-gradient(circle, rgba(0, 216, 255, 0.05) 9px, transparent 9px);
  background-size: 150px 150px, 300px 300px, 450px 450px;
  animation: ondasPulsantes 8s ease-in-out infinite;
  z-index: 0;
  opacity: 0.5;
}

/* Animação suave pulsante */
@keyframes ondasPulsantes {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
  .consultoria-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
  }
  
  .consultoria-texto {
    flex: 1;
    min-width: 280px;
  }
  
  .consultoria-texto h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .consultoria-texto p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 500px;
  }
  
  .btn-consultoria {
    background: white;
    color: #0d47a1;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-consultoria:hover {
    background: #e6f0ff;
  }
  
  .consultoria-img {
    flex: 1;
    text-align: center;
    min-width: 280px;
  }
  
  .consultoria-img img {
    max-width: 100%;
    height: auto;
  }

  .cta-final {
     background: linear-gradient(135deg, #1e1e2f, #0d47a1);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .cta-final h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-cta {
    background-color: white;
    color: #0d47a1;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn-cta:hover {
    background-color: #e0edff;
  }
  
