/* RESET e Fonte Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  body{
    padding-top: 60px;
  }
  
  /* CONTAINER */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Seções Gerais */
  .section {
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
    background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
  }
  .bg-light {
    background: #f8f8f8; /* Fundo claro para destacar a seção de diferenciais */
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Títulos e subtítulos */
  .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
  }
  .section-title-perguntas{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: white;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Grid de serviços */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Card de serviço */
  .service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Ícone do serviço */
  .service-icon {
    margin-bottom: 15px;
  }
  
  .service-icon img {
    width: 60px; /* Ajuste conforme desejar */
    height: auto;
  }
  
  /* Título do serviço */
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #004aad; /* Cor de destaque */
  }
  
  /* Descrição do serviço */
  .service-card p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Botão "Saiba Mais" */
  .btn-tech {
    background: #004aad;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-tech:hover {
    background: #003a8a;
  }
  
  /* Diferenciais */
  .diferenciais-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 1.6;
    color: #333;
  }
  
  .diferenciais-list li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .diferenciais-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
  
  .diferenciais-list li strong {
    color: #004aad;
  }
  
  /* Divisória entre seções */
  .section::after {
    content: "";
    display: block;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
  }
  
  .section:last-of-type::after {
    display: none;
  }
  
  /* CABEÇALHO */
  .header {
    position: fixed;
    top: 0;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #004aad;
    
    /* Tamanho padrão (menor) */
    height: 90px;
    transition: height 0.3s ease; /* Transição suave ao mudar de altura */
    z-index: 1000;               /* Mantém o header acima do conteúdo */
  }
  
  .header.expanded {
    /* Tamanho quando o usuário está no topo da página */
    height: 140px;
    border-bottom: 2px solid #004aad;
  }
  /* Transições para os itens do header */
  .header .logo,
  .nav-list {
    transition: transform 0.3s ease;
  }

  /* Estado expandido do header: os itens se movem para baixo e a logo aumenta um pouco */
  .header.expanded .logo {
    transform: translateY(20px) scale(1.2);
  }

  .header.expanded .nav-list {
    transform: translateY(20px);
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 120px; /* A logo ocupará no máximo a altura do header */
    width: auto;
    margin-top: -2px;
    cursor: pointer;
    pointer-events: auto; /* Garante que a imagem aceite cliques */
  }
  .header img {
    width: 90px;
    height: 90px;
  }
  
  .site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004aad;
    margin-left: 10px;
    flex: 1;
  }
  
  /* MENU DE NAVEGAÇÃO */
  .nav-list {
    list-style: none;
    margin-top: -5px;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-list li a:hover {
    color: #004aad;
  }
  
  /* HERO */
/* Sessão Hero com Vídeo de Fundo */
/* Container interno do hero */
.hero-content-ecom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-ecommerce {
  background: linear-gradient(135deg, #004aad 0%, #0264e5 100%);
  padding: 170px 0px;
}

/* Texto à esquerda */
.hero-text-ecom {
  flex: 1;
  margin-right: 40px; /* Espaço entre texto e imagem */
  max-width: 600px;
  color: #333;
}

.hero-text-ecom h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white; /* Contraste com o fundo verde */
}

.hero-text-ecom p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: rgb(208, 208, 208);
}
.hero-image-ecom img{
  width: 700px;
}

  
  /* BOTÃO (padrão do site) */
  .btn-tech {
    background: #004aad;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-tech:hover {
    box-shadow: 0 0 10px #004aad, 0 0 20px #004aad;
    background: #003a8a;
  }
  
  /* "Sua Empresa" - Listas de Pontos (Problemas e Benefícios) */
  .sua-empresa-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  /* Coluna de texto */
  .sua-empresa-text {
    flex: 1;
  }
  
  /* Coluna de imagens */
  .sua-empresa-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
    
  /* Estilo da Seção "Sua Empresa Sem um Site?" */
  #sua-empresa {
    padding: 60px 0;
    background-color: #f8f8f8;
  }

  #sua-empresa .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
  }

  #sua-empresa .sua-empresa-content {
    display: flex;
    flex-wrap: wrap; /* Garante que os itens se ajustem em telas menores */
    justify-content: space-between;
    gap: 20px;
  }

  #sua-empresa .sua-empresa-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
  }

  #sua-empresa .sua-empresa-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  #sua-empresa .sua-empresa-text .pain-points,
  #sua-empresa .sua-empresa-text .positive-points {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 30px;
  }

  #sua-empresa .sua-empresa-text li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
  }

  #sua-empresa .sua-empresa-text .pain-points li::before {
    content: "✘";
    color: #ff4444;
    font-weight: bold;
    margin-right: 10px;
  }

  #sua-empresa .sua-empresa-text .positive-points li::before {
    content: "✔";
    color: #004aad;
    font-weight: bold;
    margin-right: 10px;
  }

  #sua-empresa .btn-tech {
    background-color: #004aad;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  #sua-empresa .btn-tech:hover {
    background-color: #003a8a;
  }

  #sua-empresa .sua-empresa-images {
    flex: 1;
    max-width: 50%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  #sua-empresa .sua-empresa-images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  
  /* PORTFÓLIO */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .project-card {
    background: #ffffff;
    color: #333333;
    border: 1px solid #004aad;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .project-card h3 {
    font-size: 1.3rem;
    color: #004aad;
    margin-bottom: 0.5rem;
  }
  
  /* FORMULÁRIOS (Orçamento) */
  .form-tech {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 30px;
  }
  
  .form-tech input,
  .form-tech textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #ffffff;
    color: #333333;
    border-radius: 4px;
    resize: none;
    outline: none;
  }
  
  .form-tech input:focus,
  .form-tech textarea:focus {
    border-color: #004aad;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    color: #333333;
    border: 1px solid #004aad;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px; /* Definindo a largura do ícone */
    height: 60px; /* Definindo a altura do ícone */
    margin: 0 auto 15px; /* Centraliza o ícone horizontalmente */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente dentro do flex container */
    align-items: center; /* Centraliza verticalmente dentro do flex container */
}

.service-card h3 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.4;
}

  
  /* FAQ (fundo azul) */
  .faq-section {
    background: #004aad;
    color: #ffffff;
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .faq-list {
    margin-bottom: 20px;
  }
  
  /* Itens de FAQ */
  .faq-item {
    background: #ffffff10;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden; /* para esconder conteúdo quando fechado */
  }
  
  /* Pergunta */
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .faq-question:hover {
    background: #ffffff20;
  }
  
  /* Ícone (+) */
  .faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  /* Resposta */
  .faq-answer {
    display: none; /* oculto por padrão */
    padding: 15px 20px;
    background: #ffffff20;
    color: #ffffff;
    line-height: 1.5;
  }
  
  /* Quando aberto */
  .faq-item.open .faq-answer {
    display: block;
  }
  
  /* Ícone gira ao abrir */
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
  }
  
  /* Botão do FAQ centralizado e chamativo */
  .btn-faq-whatsapp {
    display: inline-block;
    margin: 20px auto 0;
    background: #ffffff;
    color: #004aad;
    border: 2px solid #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .btn-faq-whatsapp:hover {
    background: #003a8a;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  }
  /* Cada Card de Depoimento */
/* Seção Depoimentos */
.feedback-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;              /* Permite rolagem horizontal */
  -ms-overflow-style: none;      /* Oculta a scrollbar no IE e Edge */
  scrollbar-width: none;         /* Oculta a scrollbar no Firefox */
  cursor: grab;
  margin-top: 40px;
}
.feedback-scroll::-webkit-scrollbar {
  display: none;
}
.feedback-scroll.active {
  cursor: grabbing;
}

/* Feedback Card com imagem preenchendo a caixa */
.feedback-card {
  flex: 0 0 auto;       /* Não encolhe; largura fixa */
  width: 300px;
  height: 200px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.feedback-card:hover {
  transform: translateY(-5px);
}
.feedback-card img.feedback-img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;  /* Faz a imagem preencher a caixa sem distorção */
}

/* Modal (Imagem Expandida) */
.modal {
  display: none;               /* Oculto inicialmente */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}
.modal-caption {
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.modal-close:hover {
  color: #bbb;
}

  /* BOTÕES FIXOS NO CANTO INFERIOR DIREITO */
/* Botões Fixos */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999; /* Garante que fique acima de outros elementos */
}

/* Estilo geral dos botões */
.fixed-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: bounce 1s ease infinite;
}

/* Animação de pulinho nos botões */
.fixed-btn:hover {
  animation: bounce 1s none;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Efeitos para as cores de cada botão */
.whatsapp-btn {
  background-color: #32d951;
}

.instagram-btn {
  background-color: #E1306C;
}

/* Ícone centralizado nos botões */
.fixed-btn .icon img {
  margin-top: 8px;
  width: 35px;
  height: 35px;
}

/* Botão WhatsApp: cor verde */
.whatsapp-btn {
  background-color: #32d951;
}

/* Botão Instagram: cor característica do Instagram */
.instagram-btn {
  background-color: #E1306C;
}

/* Texto do tooltip que aparece ao passar o mouse */
.fixed-btn .text {
  position: absolute;
  right: 60px;
  background-color: #32d951; /* Cor padrão para o WhatsApp */
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none; /* Não interfere no hover */
}

/* Ajusta a cor de fundo do texto quando for Instagram */
.instagram-btn .text {
  background-color: #E1306C;
}

/* Ao passar o mouse, exibe o texto */
.fixed-btn:hover .text {
  opacity: 1;
  transform: translateX(0);
}

  
  /* RODAPÉ */
/* Seção de rodapé ou bloco final */
.footer-section {
  background: #ffffff;  /* Ajuste a cor de fundo se desejar */
  padding: 20px 0;
  /* Opcional: borda superior ou outro efeito
  border-top: 2px solid #ccc; 
  */
}

.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  
  /* Exibe logo à esquerda e redes sociais à direita */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.footer-logo img {
  max-height: 50px; /* Ajuste conforme quiser */
  height: auto;
  width: auto;
}

/* Redes Sociais */
.footer-social {
  display: flex;
  gap: 10px; /* Espaço entre os ícones */
}

.footer-social a {
  display: inline-block;
}

.footer-social img {
  width: 32px; /* Tamanho dos ícones */
  height: auto;
  transition: transform 0.3s ease;
}

/* Efeito de hover nos ícones */
.footer-social img:hover {
  transform: scale(1.1);
}

.no-drag {
  /* Desabilita o arraste em navegadores baseados em WebKit (Chrome, Safari) */
  -webkit-user-drag: none;
  /* Desabilita a seleção do elemento (opcional, se quiser também impedir seleção) */
  user-select: none;
}
.see-more-btn {
  text-align: center;
  margin-top: 80px;
}

.see-more-btn .btn-tech {
  padding: 10px 20px;
  background-color: #0056b3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.see-more-btn .btn-tech:hover {
  background-color: #003a8a;
}
  
/* RESPONSIVIDADE PARA TELAS MENORES */
@media (max-width: 768px) {
    .header-content {
      justify-content: center;
      position: relative;
    }
      /* Desabilita a animação on-scroll no header para evitar conflito com o menu mobile */
    .header.animate-on-scroll {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
    }
    #sua-empresa .sua-empresa-content {
      flex-direction: column;
      align-items: center;
  }
  .header img{
    margin-top: 5px;
    width: 80px;
    height: 80px;
  }

  #sua-empresa .sua-empresa-text {
      max-width: 100%;
      margin-bottom: 20px;
  }

  #sua-empresa .sua-empresa-images {
      max-width: 100%;
  }

  #sua-empresa .sua-empresa-images img {
      max-width: 100%;
  }
    .site-title {
      display: none;
    }
    .nav-list {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: #ffffff;
      color: #333333;
      text-align: center;
      padding: 10px 0;
      border-top: 1px solid #ddd;
    }
    .nav-list.active {
      display: flex;
    }
    .hero-content-ecom {
      flex-direction: column;
      text-align: center;
    }
    .hero-text-ecom {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .hero-image-ecom{
      margin-top: 90px;
    }
    .hero-image-ecom img {
      max-width: 100%;
      height: 100%;
      margin: 0 auto;
    }
    .footer-content {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  
  
  
  