/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Geral */
body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #0d0d0d;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 8px 40px;
    background-color: #121212;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    opacity: 80%;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    flex: 1;
    display: flex;
    justify-content: center;
    
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00c3ff;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}

.hero-text h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00c3ff;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #008bbf;
    color: #fff;
}

/* Seções */
.section {
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #00c3ff;
}

.section p {
    max-width: 800px;
    margin: auto;
}

.bg-dark {
    background: #111;
}

.bg-darker {
    background: #0a0a0a;
}


/* Serviços */
.servicos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.85);
    padding: 30px;
    border-radius: 12px;
    width: 340px;  /* aumentei o tamanho */
    height: 220px; /* altura um pouco maior */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    
}

/* Fundo com menos desfoque */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.65); /* estava 6px, agora mais nítido */
    z-index: 0;
    transition: transform 0.6s ease, filter 0.5s ease;
    transform: scale(1);
}

/* Diferentes imagens para cada card */
.card.desenvolvimento::before {
    background-image: url("imagens/programacao.jpg");
}

.card.suporte::before {
    background-image: url("imagens/servidores.jpg");
}

.card.consultoria::before {
    background-image: url("imagens/consultoria.jpg");
}

/* Conteúdo acima da imagem */
.card h3,
.card p {
    position: relative;
    z-index: 1;
}

/* Efeito ao passar o mouse */
.card:hover {
    transform: scale(1.07);
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.4); /* leve brilho azul */
}

/* Parallax mais leve */
.card:hover::before {
    filter: blur(1.5px) brightness(0.8);
    transform: scale(1.15) translateY(-8px);
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 14px;
}

/* Logo */
.logo-img {
    margin-top: 10px;
    height: 50px;
    transform: scale(1.8);
    transform-origin: left center;
}


.logob-img {
    width: 400px;
    height: auto;
    margin-top: 50px;
}

/* ===== ÍCONES SOCIAIS ===== */

.social-icons {
  display: flex;
  gap: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  justify-content: center;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f57c00; /* cor dos quadrados */
  color: #ffffff;

  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons .icon:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* cores individuais (opcional) */
.social-icons .instagram {
  background: #00b3b3;
}

.social-icons .whatsapp {
  background: #00b3b3;
}

.social-icons .suporte {
  background: #00b3b3;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


.servicos-container .card:nth-child(1) {
  transition-delay: 0.1s;
}

.servicos-container .card:nth-child(2) {
  transition-delay: 0.25s;
}

.servicos-container .card:nth-child(3) {
  transition-delay: 0.4s;
}

.quem-sou-container {
  display: flex;
  align-items: center;
  gap: 40px;

  max-width: 1100px;   /* 🔥 LIMITA A LARGURA */
  margin: 0 auto;      /* 🔥 CENTRALIZA NA TELA */
  padding: 0 20px;     /* 🔥 RESPIRO NAS LATERAIS */
  
}

.quem-sou-texto {
  flex: 1;
}

.quem-sou-imagem {
   flex: 1;
  margin-top: 80px;

  display: flex;
  justify-content: flex-end;

  padding: 12px;           /* 👈 ISSO CRIA A BORDA VISÍVEL DOS DOIS LADOS */
}

.quem-sou-imagem img {
  width: 100%;
  max-width: 420px;
  display: block;
  object-fit: cover;

  border-radius: 12px;     /* 👈 AGORA A BORDA É DA IMAGEM */
}

#servicos .linha-secao {
  margin-bottom: 50px;
}

#clientes {
  text-align: center;
}

.clientes-slider {
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
}

.clientes-track {
  display: flex;
  width: max-content; 
  gap: 40px;
  animation: scrollClientes 35s linear infinite;
}

.clientes-track img {
  width: 120px;
  opacity: 0.8;
  transition: 0.3s;
  height: 80px;              /* ← força padrão */
  object-fit: contain;       /* ← NÃO distorce */
  flex-shrink: 0;            /* ← MUITO IMPORTANTE */
}

.clientes-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollClientes {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

html {
  scroll-behavior: smooth;
}

.section-dev {
 max-width: 900px;
  margin: 0 auto;
  padding: 140px 20px 40px 20px;
  text-align: center;
  padding-top: 140px; /* empurra o conteúdo pra baixo do menu */
}

.section-dev img {
 max-width: 100%;
  width: 600px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}


.dev-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
}

.dev-layout img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .dev-layout {
    flex-direction: column;
    text-align: center;
  }
}

.dev-texto {
  flex: 1;
  text-align: left;
}

.btn-orcamento {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #00c3ff;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background: #00a5d6;
  transform: translateY(-2px);
}

.lista-servicos li {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lista-servicos li {
    white-space: normal;
  }
}

.lista-servicos {
  list-style: none;   /* REMOVE os pontos */
  padding: 0;
  margin: 0 auto;
}

.nav-servico {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #00c3ff;
  background: rgba(0, 0, 0, 0.4);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.4;
  transition: 0.3s;
  z-index: 999;
}

.nav-servico:hover {
  opacity: 1;
  background: rgba(0, 195, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.nav-direita {
  right: 20px;
}

.nav-esquerda {
  left: 20px;
}

@media (max-width: 768px) {
  .nav-servico {
    display: none;
  }
}

.contato-mapa {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.contato-mapa iframe {
   width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  .contato-mapa-unico iframe {
    height: 320px;
  }
}

.icon.telefone {
  background: #0d6efd; /* azul telefone */
}

.icon.telefone:hover {
  background: #0b5ed7;
}

/* ===== AJUSTES NAVBAR MOBILE ===== */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    height: 36px;        /* diminui o logo no celular */
    transform: scale(1); /* remove aquele zoom */
    margin-top: 0;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    font-size: 14px;     /* diminui a fonte */
  }
}

/* ===== QUEM SOMOS - MOBILE ===== */
@media (max-width: 768px) {
  .quem-sou-container {
    flex-direction: column;
    text-align: center;
  }

  .quem-sou-texto {
    text-align: center;
  }

   .quem-sou-imagem {
    margin-left: 0;     /* REMOVE o empurrão lateral */
    margin-top: 20px;   /* opcional: só um espacinho em cima */
    display: flex;
    justify-content: center; /* CENTRALIZA */
  }

  .quem-sou-imagem img {
    max-width: 300px;
    width: 100%;
  }
}

/* ===== SERVIÇOS - MOBILE ===== */
@media (max-width: 768px) {

  .card {
    width: 280px;   /* diminui a largura */
    height: 180px;  /* diminui a altura */
    padding: 20px;  /* menos espaço interno */
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }
}

/* ===== PÁGINAS DE SERVIÇOS - MOBILE ===== */
@media (max-width: 768px) {

  .dev-layout {
    flex-direction: column !important;
    text-align: center;
  }

  .dev-texto {
    text-align: center;
  }

  .dev-layout img {
    max-width: 300px;
  }

  .section-dev {
    padding-top: 100px;
  }
}

/* ===== HERO - MOBILE ===== */
@media (max-width: 768px) {

  .hero {
    height: 100vh;
  }

  .logob-img {
    width: 240px;     /* diminui a logo */
    max-width: 80vw;  /* garante que nunca estoure a tela */
    margin-top: 0;
  }

  .hero-text p {
    font-size: 16px;
    padding: 0 10px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}









