/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte tech Orbitron */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #e0e7ff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background: linear-gradient(90deg, #1432a8 0%, #3b6cff 100%);
  box-shadow: 0 8px 32px rgba(31, 55, 123, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  display: block;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 24px 0;
}

.logo img {
  height: 220px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 32px #4f97ff);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 40px #4f97ff);
}

/* Nav */
.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #aad4ff;
  bottom: -4px;
  left: 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list li a:hover,
.nav-list li a:focus {
  background: #aad4ff;
  color: #1432a8;
  transform: scale(1.05);
}

.nav-list li a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
#nav-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav-toggle:hover {
  transform: rotate(90deg);
}

/* Responsivo */
@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    gap: 18px;
  }
  .nav-list {
    flex-direction: column;
    gap: 18px;
    background: rgba(20,50,168,0.95);
    border-radius: 18px;
    padding: 18px 0;
    position: absolute;
    top: 100px;
    right: 24px;
    min-width: 180px;
    display: none;
  }
  .nav-list.active {
    display: flex;
  }
  #nav-toggle {
    display: block;
  }
}

/* Hero */
.hero-section {
  background: linear-gradient(120deg, #1432a8 60%, #aad4ff 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  display: block;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.3)"/></svg>') repeat;
  animation: particles 30s linear infinite;
  opacity: 0.15;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: url('assets/wave.svg') repeat-x;
  opacity: 0.2;
  pointer-events: none;
  animation: wave 10s linear infinite;
}

@keyframes particles {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

@keyframes wave {
  0% { background-position: 0 100%; }
  100% { background-position: 1440px 100%; }
}

.hero-content {
  opacity: 1;
  display: block;
}

.hero-content h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px #1432a8;
  display: inline-block;
  opacity: 1;
  animation: typing 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes typing {
  from { width: 0; border-right: 3px solid #aad4ff; }
  to { width: 100%; border-right: 3px solid transparent; }
}

.hero-content h1.typing-animation {
  white-space: nowrap;
  overflow: hidden;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 32px;
  color: #e3eaff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-content p.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(90deg, #4f97ff 0%, #aad4ff 100%);
  color: #1432a8;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px 38px;
  box-shadow: 0 4px 24px rgba(79,151,255,0.18);
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.btn-primary.active {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary:hover {
  background: #1432a8;
  color: #aad4ff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(79,151,255,0.3);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover .btn-icon {
  transform: rotate(10deg);
}

/* Cards de serviço */
.services-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #cfd9ff;
  text-align: center;
  display: block;
}

.services-section h2 {
  font-size: 2.6rem;
  margin-bottom: 32px;
  color: #4f97ff;
  font-family: 'Orbitron', Arial, sans-serif;
  opacity: 1;
}

.cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 1;
}

.card {
  background: linear-gradient(120deg, #192d59 60%, #4f97ff 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(31, 55, 123, 0.18);
  padding: 32px 28px;
  width: 320px;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.card:nth-child(1) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; }
.card:nth-child(2) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
.card:nth-child(3) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
.card:nth-child(4) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s; }
.card:nth-child(5) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s; }
.card:nth-child(6) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s; }
.card:nth-child(7) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.7s; }
.card:nth-child(8) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.8s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.8s; }

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(79,151,255,0.25);
  background: linear-gradient(120deg, #4f97ff 60%, #aad4ff 100%);
}

.card-icon {
  font-size: 2.8rem;
  color: #aad4ff;
  margin-bottom: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(10deg);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-family: 'Orbitron', Arial, sans-serif;
}

.card p {
  font-size: 1.1rem;
  color: #e3eaff;
}

/* Projetos */
.projects-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #cfd9ff;
  text-align: center;
  display: block;
}

.projects-section h2 {
  font-size: 2.6rem;
  margin-bottom: 32px;
  color: #4f97ff;
  font-family: 'Orbitron', Arial, sans-serif;
  opacity: 1;
}

.projects-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 1;
}

.project-card {
  background: linear-gradient(120deg, #192d59 60%, #4f97ff 100%);
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 6px 20px rgba(31, 55, 123, 0.18);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.project-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.project-card:nth-child(1) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; }
.project-card:nth-child(2) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s; }
.project-card:nth-child(3) { transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 14px 36px rgba(31, 55, 123, 0.28);
  background: linear-gradient(120deg, #4f97ff 60%, #aad4ff 100%);
}

.project-card h3 {
  color: #aad4ff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: 'Orbitron', Arial, sans-serif;
}

.project-card p {
  font-size: 1.1rem;
  color: #e3eaff;
  line-height: 1.5;
}

/* Formulário de contato */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1432a8, #3b6cff);
  color: #fff;
  text-align: center;
  display: block;
}

.contact-section h2 {
  font-size: 2.6rem;
  margin-bottom: 32px;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #aad4ff;
  opacity: 1;
}

.contact-section form {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(79,151,255,0.12);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.form-group label {
  font-size: 1.1rem;
  color: #aad4ff;
  font-weight: 700;
  margin-bottom: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: #e3eaff;
  color: #1432a8;
  font-size: 1.1rem;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(79,151,255,0.08);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  box-shadow: 0 4px 16px rgba(79,151,255,0.18);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-secondary {
  background: linear-gradient(90deg, #4f97ff 0%, #aad4ff 100%);
  color: #1432a8;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  box-shadow: 0 2px 12px rgba(79,151,255,0.12);
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: #1432a8;
  color: #aad4ff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(79,151,255,0.3);
}

.btn-secondary .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover .btn-icon {
  transform: rotate(10deg);
}

.form-status {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #aad4ff;
}

/* Footer */
.footer {
  background: #192d59;
  color: #aad4ff;
  padding: 32px 0 18px 0;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 -4px 24px rgba(31,55,123,0.12);
  display: block;
}

.social-icons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  color: #aad4ff;
  font-size: 2rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #0a0a0a;
  border: 2.5px solid #4f97ff;
  border-radius: 50%;
  box-shadow: 0 0 20px #4f97ffa0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px #4f97ffa0; }
  50% { transform: scale(1.05); box-shadow: 0 0 30px #4f97ffdd; }
  100% { transform: scale(1); box-shadow: 0 0 20px #4f97ffa0; }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 35px #4f97ffdd;
}

.whatsapp-float img {
  display: block;
  width: 32px;
  height: 32px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover img {
  transform: rotate(20deg);
}

/* Ajustes para animações de scroll */
.fade-in, .fade-up {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.active, .fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.2s; }
.fade-in.delay-2 { transition-delay: 0.4s; }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }
.fade-up.delay-7 { transition-delay: 0.7s; }
.fade-up.delay-8 { transition-delay: 0.8s; }

/* ---------------------------
   Por que Automatizar
--------------------------- */
.why-automation-section {
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center;
}

.why-automation-section h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #4f97ff;
  font-family: 'Orbitron', sans-serif;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.reason {
  background: linear-gradient(120deg, #192d59 60%, #4f97ff 100%);
  border-radius: 20px;
  padding: 30px 25px;
  width: 250px;
  box-shadow: 0 6px 20px rgba(31,55,123,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.reason:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(79,151,255,0.3);
}

.reason i {
  color: #aad4ff;
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ---------------------------
   Outros Serviços
--------------------------- */
.extra-services-section {
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center;
}

.extra-services-section h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #4f97ff;
  font-family: 'Orbitron', sans-serif;
}

/* ---------------------------
   Sobre Nós
--------------------------- */
.about-section {
  padding: 80px 0;
  background: #0a0a0a;
  color: #cfd9ff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 280px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(79,151,255,0.25);
  border: 3px solid #1432a8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(79,151,255,0.4);
}

.about-content {
  flex: 2 1 400px;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  color: #4f97ff;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-content .highlight {
  font-weight: 700;
  color: #aad4ff;
}

.about-content .btn {
  margin-top: 16px;
}

/* ---------------------------
   CTA WhatsApp
--------------------------- */
.cta-whatsapp {
  background: linear-gradient(135deg, #1432a8, #3b6cff);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.cta-whatsapp h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #aad4ff;
}

.cta-whatsapp p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #e3eaff;
}

.cta-whatsapp .btn {
  font-size: 1.3rem;
  padding: 16px 32px;
}
/* Ajustes para a foto do Sobre Nós */
.about-image img {
  max-width: 220px; /* diminui o tamanho */
  border-radius: 50%; /* deixa em formato circular */
  border: 6px solid #1432a8; /* moldura azul escuro */
  padding: 6px; /* espaço entre foto e borda */
  background: linear-gradient(135deg, #1432a8, #4f97ff); /* brilho no fundo */
  box-shadow: 0 0 25px rgba(79,151,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(79,151,255,0.8);
}
/* =========================
   ✨ EFEITOS DESTAQUE ✨
========================= */

/* Glow nos títulos */
h2, h3 {
  text-shadow: 0 0 10px #4f97ff, 0 0 20px #1432a8;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #4f97ff; }
  to { text-shadow: 0 0 20px #4f97ff, 0 0 30px #1432a8; }
}

body, * {
  cursor: auto !important;
}
/* ====== Seções com fundos diferenciados ====== */

/* Serviços */
.services-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1432a8 100%);
  position: relative;
  padding: 80px 0;
}

/* Projetos */
.projects-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d2b 100%);
  position: relative;
  padding: 80px 0;
}

/* Por que automatizar */
.why-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1432a8 100%);
  position: relative;
  padding: 80px 0;
}

/* Sobre nós */
.about-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d2b 100%);
  position: relative;
  padding: 80px 0;
}

/* ====== Divisores diagonais ====== */
.services-section::before,
.projects-section::before,
.why-section::before,
.about-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  transform: skewY(-3deg);
  z-index: -1;
}

/* ====== Spotlight nos títulos ====== */
.services-section h2,
.projects-section h2,
.why-section h2,
.about-section h2 {
  position: relative;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #f1f1f1;
}

.services-section h2::after,
.projects-section h2::after,
.why-section h2::after,
.about-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #1432a8;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ====== Cards com efeito de destaque ====== */
.card,
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(20, 50, 168, 0.4);
}

}/* --- Ajuste da foto Sobre Nós --- */
.about-photo img {
  max-width: 280px;      /* deixa num tamanho controlado */
  width: 100%;
  border-radius: 50%;    /* moldura redonda */
  border: 4px solid #1432a8; /* moldura azul escuro */
  box-shadow: 0 0 20px rgba(20, 50, 168, 0.6);
  object-fit: cover;
}

/* --- Fundos com degradê nas seções --- */
.services-section,
.projects-section,
.why-section,
.about-section {
  background: linear-gradient(180deg, #0d0d0d 0%, #1432a8 100%);
  padding: 80px 20px;
  color: #f2f2f2; /* texto mais clarinho pra destacar */
}

.services-section h2,
.projects-section h2,
.why-section h2,
.about-section h2 {
  color: #ffffff;
}
/* Grid para alinhar texto e foto lado a lado */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Ajuste da foto Sobre Nós */
.about-photo img {
  max-width: 250px;   /* controla o tamanho */
  width: 100%;
  border-radius: 50%; /* deixa redondo */
  border: 5px solid #1432a8; /* moldura azul escuro */
  box-shadow: 0 0 20px rgba(20, 50, 168, 0.6);
  object-fit: cover;
}
/* ===== Padronização das seções ===== */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

section p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  color: #cccccc;
  text-align: center;
}

/* ===== Fundos com gradiente ===== */
.services-section,
.projects-section,
.why-automation,
.about-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1432a8 100%);
}

/* ===== Sobre Nós (foto + texto) ===== */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  text-align: justify;
  max-width: 500px;
}

.about-photo img {
  max-width: 180px;
  border-radius: 50%;
  border: 3px solid #1432a8;
  box-shadow: 0 0 12px rgba(20, 50, 168, 0.6);
  object-fit: cover;
}
/* ===== Ajuste visual do SOBRE NÓS ===== */
.about-section {
  text-align: center;
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-photo img {
  max-width: 140px;
  border-radius: 50%;
  border: 2px solid #1432a8;
  box-shadow: 0 0 8px rgba(20, 50, 168, 0.5);
  object-fit: cover;
}

.about-text {
  max-width: 500px;
  text-align: justify;
  color: #cccccc;
  line-height: 1.6;
}

/* Layout em telas maiores */
@media (min-width: 768px) {
  .about-grid {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .about-photo {
    flex: 0 0 30%;
    text-align: center;
  }

  .about-text {
    flex: 0 0 70%;
  }
}
/* ===== Personagem lateral ===== */
.character-container {
  position: absolute;
  left: 20px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.character-img {
  max-width: 220px;
  height: auto;
}

/* Balão de fala */
.speech-bubble {
  position: relative;
  background: #1432a8;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1432a8 transparent;
}

/* Ajuste para celular */
@media (max-width: 768px) {
  .character-container {
    position: static;
    margin: 20px auto;
  }

  .character-img {
    max-width: 160px;
  }

  .speech-bubble {
    font-size: 0.9rem;
  }
}
/* ===== HERO REFEITO EM GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 500px;
}

.mascote {
  text-align: center;
}

.mascote-img {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(20,50,168,.35));
}

.hero-content {
  text-align: left;
}

/* Mobile: fica um embaixo do outro */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
}
/* ===== CONTATO HUB — FORÇAR ESTILOS ===== */
#contact.contact-hub {
  text-align: center !important;
  padding: 80px 20px !important;
  background: linear-gradient(135deg, #1432a8, #3b6cff) !important;
  color: #fff !important;
}
#contact.contact-hub h2 {
  font-size: 2rem !important;
  margin-bottom: 10px !important;
  color: #aad4ff !important;
}
#contact.contact-hub .contact-sub {
  font-size: 1.1rem !important;
  color: #e3eaff !important;
  margin-bottom: 28px !important;
}

/* Cards de ação */
#contact.contact-hub .contact-actions {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  gap: 18px !important;
  justify-items: center !important;
  align-items: stretch !important;
  margin: 0 auto 18px !important;
  max-width: 900px !important;
}
#contact.contact-hub .contact-card {
  width: 100% !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 16px !important;
  padding: 16px 18px !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18) !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}
#contact.contact-hub .contact-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25) !important;
  background: rgba(255,255,255,0.12) !important;
}
#contact.contact-hub .contact-card strong { display:block !important; font-size:1.05rem !important; }
#contact.contact-hub .contact-card span { opacity:.9 !important; font-size:.95rem !important; }
#contact.contact-hub .contact-card i, 
#contact.contact-hub .contact-card img { width: 28px !important; height: 28px !important; flex: 0 0 28px !important; }
#contact.contact-hub .contact-card.wa { border-color: rgba(37,211,102,0.35) !important; }
#contact.contact-hub .contact-card.mail { border-color: rgba(255,255,255,0.25) !important; }
#contact.contact-hub .contact-card.call { border-color: rgba(170,212,255,0.45) !important; }

/* Bullets */
#contact.contact-hub .contact-bullets {
  list-style: none !important;
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin: 16px auto 0 !important;
  padding: 0 !important;
  max-width: 900px !important;
}
#contact.contact-hub .contact-bullets li {
  background: rgba(0,0,0,0.18) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: .95rem !important;
}
#contact.contact-hub .contact-bullets i { width: 18px !important; height: 18px !important; }

/* FAQ */
#contact.contact-hub .contact-faq { max-width: 900px !important; margin: 22px auto 0 !important; text-align: left !important; }
#contact.contact-hub .contact-faq details {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  margin-bottom: 10px !important;
}
#contact.contact-hub .contact-faq summary { cursor: pointer !important; font-weight: 700 !important; outline: none !important; }
#contact.contact-hub .contact-faq p { margin: 8px 0 0 !important; color: #eef2ff !important; }

/* Garante que todos os contact-cards fiquem iguais */
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Caixinha fixa pros ícones */
.contact-card .icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .icon-box img,
.contact-card .icon-box svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
/* Garantir que o botão flutuante fica por cima de tudo */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2147483647; /* maior que 9999, garante topo */
  pointer-events: auto;
}

.whatsapp-float img {
  display: block;
  width: 36px;
  height: 36px;
}
/* ===== Cursor: normal no site, texto só em campos, pointer em interativos ===== */

/* Padrão: cursor normal (não-I-beam) em blocos gerais */
body, main, header, footer, section, .container {
  cursor: default;
}

/* Interativos devem ter "mãozinha" */
a[href],
button,
.btn,
.nav-list li a,
.contact-card,
.card,
.project-card,
.whatsapp-float,
summary {
  cursor: pointer;
}

/* Evita selecionar texto em elementos de navegação/cta */
.nav-list li a,
.btn,
button,
.contact-card,
.card,
.project-card,
.whatsapp-float,
summary {
  user-select: none;
  -webkit-user-select: none;
}

/* Campos de formulário continuam com cursor de texto (I-beam) */
input,
textarea {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}
/* ===== Contato: 2 cards lado a lado, centralizados ===== */
#contact .contact-actions {
  display: flex !important;
  justify-content: center !important;   /* centraliza o grupo */
  align-items: stretch !important;
  gap: 2rem !important;                 /* espaço entre os cards */
  flex-wrap: nowrap !important;         /* lado a lado em desktop */
  margin: 2rem auto 0 !important;
  max-width: 900px !important;
}

@media (max-width: 700px) {
  #contact .contact-actions {
    flex-wrap: wrap !important;         /* quebra no mobile */
    gap: 1rem !important;
  }
}

#contact .contact-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  padding: 1rem 1.5rem !important;

  /* 🎯 Aqui você ajusta o tamanho do card */
  min-width: 1000px !important;   /* largura mínima */
  max-width: 1000px !important;   /* largura máxima (se quiser fixar igual ao min) */
  height: 100px !important;      /* altura fixa */

  text-align: left !important;
}
/* ===== Contato: força layout e tamanhos (edite aqui) ===== */

/* Espaço entre os dois cards (aumente/diminua este valor) */
#contact .contact-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 48px !important;         /* <<< AJUSTE O ESPAÇO ENTRE OS CARDS AQUI */
  flex-wrap: nowrap !important;
}

/* Tamanho do card do WhatsApp */
#contact #card-wa {
  width: 500px !important;      /* <<< LARGURA DO CARD WHATSAPP */
  height: 200px !important;     /* <<< ALTURA DO CARD WHATSAPP */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 12px 18px !important;
}

/* Tamanho do card de E-mail */
#contact #card-mail {
  width: 2000px !important;      /* <<< LARGURA DO CARD E-MAIL */
  height:200px !important;     /* <<< ALTURA DO CARD E-MAIL */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 12px 18px !important;
}

/* Ícones dos cards (mantém proporção) */
#contact #card-wa img,
#contact #card-mail img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
}
/* ===== HERO: layout lado a lado e tamanho do personagem ===== */
.hero-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: clamp(16px, 4vw, 48px);
  text-align:left;              /* mantém o texto alinhado quando lado a lado */
}

/* tamanho do personagem (edite aqui) */
.hero-section .mascote-img{
  width: clamp(260px, 34vw, 520px);  /* 👈 MIN — FLUIDO — MAX */
  height:auto;
  display:block;
}

/* largura máxima do bloco de texto pra não esmagar a imagem */
.hero-section .hero-content{
  max-width: 580px;
  margin-left:auto;             /* texto fica à direita do personagem */
}

/* responsivo: empilha no mobile */
@media (max-width: 900px){
  .hero-grid{ 
    flex-direction:column;
    text-align:center;
  }
  .hero-section .hero-content{ 
    max-width: 680px; 
    margin: 0 auto; 
  }
  .hero-section .mascote-img{
    width: clamp(220px, 60vw, 380px); /* 👈 tamanho no mobile (edite se quiser) */
  }
/* Ajustes Mobile */
@media (max-width: 700px) {
  /* Hero */
  .hero-content h1 {
    font-size: 2.2rem;   /* menor no celular */
    text-align: center;
  }
  .hero-content p {
    font-size: 1.1rem;
    padding: 0 12px;
  }
  .hero-section .mascote-img {
    width: clamp(200px, 55vw, 320px);
    margin-bottom: 1.5rem;
  }

  /* Seções genéricas */
  section {
    padding: 60px 20px !important;
    text-align: center;
  }

  /* Contato */
  #contact .contact-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.2rem !important;
  }
  #contact .contact-card {
    min-width: 100% !important;
    justify-content: flex-start !important;
    padding: 1.2rem;
  }
  #contact .contact-card img {
    width: 36px;
    height: 36px;
  }
}/* ===== Header shrink no mobile (APENAS ADIÇÃO) ===== */
@media (max-width: 900px) {
  /* estados base no mobile */
  .header-container {
    transition: padding .25s ease;
  }
  .logo img {
    height: 140px; /* tamanho inicial no mobile */
    transition: height .25s ease, transform .25s ease, filter .25s ease;
  }

  /* estado encolhido quando rolar */
  .header.shrink .header-container {
    padding: 10px 0 8px 0;
  }
  .header.shrink .logo img {
    height: 88px;  /* << ajuste aqui se quiser menor/maior ao rolar */
    filter: drop-shadow(0 0 18px #4f97ff);
  }
}/* ===== Mobile: header auto-hide ===== */
@media (max-width: 900px) {
  /* deixa o header fixo pra poder deslizar pra fora da tela */
  .header {
    position: fixed;      /* <— override do sticky só no mobile */
    top: 0;
    left: 0;
    width: 100%;
    transition: transform .25s ease, padding .25s ease;
  }

  /* empurra o conteúdo pra não ficar por baixo do header */
  body {
    padding-top: 120px;   /* AJUSTE: ~altura do seu header no mobile */
  }

  /* quando escondido, some pra cima */
  .header.auto-hide {
    transform: translateY(-100%);
  }
}/* Reserva automática da altura do header no mobile */
@media (max-width: 900px) {
  :root { --header-h: 0px; }
  body { padding-top: var(--header-h); } /* usa a altura medida */
}
/* Reserva automática da altura do header no mobile */
@media (max-width: 900px) {
  :root { --header-h: 0px; }
  body { padding-top: var(--header-h); } /* usa a altura medida */
}

/* Opcional: dar um respiro extra para o herói no mobile */
@media (max-width: 900px) {
  .hero-section { 
    margin-top: 8px;  /* ajusta aqui se quiser mais ou menos espaço */
  }
}/* ===== Contato responsivo ===== */
@media (max-width: 700px) {
  #contact .contact-actions {
    flex-direction: column !important;   /* força um abaixo do outro */
    align-items: center !important;      /* centraliza no eixo horizontal */
    gap: 1.2rem !important;              /* espaço entre os cards */
  }

  #contact .contact-card {
    width: 90% !important;               /* ocupa quase toda a largura da tela */
    max-width: 380px !important;         /* mas não fica gigante */
  }
}/* ====== Contato Responsivo ====== */

/* ===== Desktop (padrão) ===== */
#contact .contact-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: nowrap;    /* ficam lado a lado */
  margin: 2rem auto 0;
  max-width: 900px;
}

#contact .contact-card {
  flex: 1 1 300px;      /* cada card ocupa um espaço fixo */
  min-width: 280px;
  max-width: 380px;
  padding: 1rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

/* ===== Mobile: scroll horizontal ===== */
@media (max-width: 768px) {
  #contact .contact-actions {
    overflow-x: auto;               /* permite arrastar */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; 
    justify-content: flex-start;    /* começa do lado esquerdo */
  }

  #contact .contact-card {
    flex: 0 0 80%;                  /* ocupa 80% da tela */
    scroll-snap-align: center; 
  }
}
