/* ===== VARIÁVEIS E CONFIGURAÇÕES GLOBAIS ===== */
:root {
  /* Cores da marca UANICODE */
  --azul-principal: #1a73e8;
  --azul-escuro: #0a1f44;
  --ciano-claro: #00c9ff;
  --ciano-brilhante: #3de1f3;

  /* Sistema de cores */
  --bg: #0b0b0d;
  --panel: #0f1115;
  --card: #0d0f14;
  --muted: #9aa4b2;
  --text: #e5e7eb;
  --heading: #ffffff;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --ring: rgba(37, 99, 235, 0.35);
  --border: #1f2937;
  --radius: 14px;

  /* Gradientes oficiais */
  --gradiente-principal: linear-gradient(
    90deg,
    var(--azul-principal) 0%,
    var(--ciano-claro) 100%
  );
  --gradiente-secundario: linear-gradient(
    135deg,
    var(--azul-escuro) 0%,
    var(--azul-principal) 50%,
    var(--ciano-brilhante) 100%
  );
}

/* ===== RESET E CONFIGURAÇÕES BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 20% -10%,
      rgba(37, 99, 235, 0.15),
      transparent 55%
    ),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ACESSIBILIDADE (SKIP LINK / FOCUS) ===== */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid rgba(61, 225, 243, 0.85);
  outline-offset: 3px;
}

/* ===== LAYOUT E CONTAINERS ===== */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), transparent 40%);
}

/* ===== TIPOGRAFIA ===== */
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 12px;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title.big {
  font-size: clamp(28px, 5vw, 48px);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradiente-principal);
  color: white;
  box-shadow: 0 8px 24px -8px var(--ring);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px -8px var(--ring);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(61, 225, 243, 0.45);
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.notice-bar {
  position: relative;
  z-index: 100;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.notice-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.notice-text {
  margin: 0;
  color: var(--text);
}

.notice-phone {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-phone:hover {
  color: var(--text);
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 20%;
  height: 20%;
  border-radius: 10px;

  border: 1px solid var(--border);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 16px;
  height: 36px;
  width: 12em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      900px 500px at 20% 20%,
      rgba(37, 99, 235, 0.22),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-mobile-video {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 96px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 17, 21, 0.55);
  border: 1px solid rgba(31, 41, 55, 0.75);
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
}

.hero-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.3),
    rgba(37, 99, 235, 0.05)
  );
  border: 1px solid rgba(31, 41, 55, 0.75);
  padding: 6px;
}

.hero-brand-name {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--heading);
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 10px 0 14px;
}

.hero-subtitle {
  color: rgba(229, 231, 235, 0.88);
  font-size: clamp(16px, 2.1vw, 18px);
  max-width: 60ch;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.hero-scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ciano-claro);
  box-shadow: 0 0 0 6px rgba(0, 201, 255, 0.12);
  animation: heroDot 1.8s ease-in-out infinite;
}

@keyframes heroDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ===== INOVAÇÃO E NÚMEROS ===== */
.innovation {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(37, 99, 235, 0.02)
  );
}

.innovation-header {
  text-align: center;
  margin-bottom: 48px;
}

.innovation-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.number-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.number-card:hover::before {
  left: 100%;
}

.number-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -20px rgba(37, 99, 235, 0.4);
}

.number-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradiente-principal);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: white;
  transition: transform 0.3s ease;
}

.number-card:hover .number-icon {
  transform: scale(1.1) rotate(5deg);
}

.number-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 8px;
  transition: color 0.3s ease;
}

.number-card:hover .number-value {
  background: var(--gradiente-principal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* ===== SOBRE ===== */
.about {
  position: relative;
  overflow: hidden;
}

.about-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.about-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 13, 0.4);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--muted);
}

.diferenciais h3 {
  color: var(--heading);
  font-size: 20px;
  margin: 32px 0 20px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diferencial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.diferencial-item:hover::before {
  left: 100%;
}

.diferencial-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.diferencial-item i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.diferencial-item:hover i {
  transform: scale(1.2);
}

/* ===== SERVIÇOS ===== */
.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -20px rgba(37, 99, 235, 0.4);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(37, 99, 235, 0.05)
  );
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradiente-principal);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.service-card h3 {
  color: var(--heading);
  font-size: 20px;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  background: var(--gradiente-principal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ===== POR QUE ESCOLHER ===== */
.why-choose {
  position: relative;
  overflow: hidden;
}

.why-choose-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.why-choose-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 13, 0.4);
  z-index: 1;
}

.why-choose .container {
  position: relative;
  z-index: 2;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ciano-claro);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-text {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -20px rgba(37, 99, 235, 0.4);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(37, 99, 235, 0.05)
  );
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradiente-principal);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.benefit-card h3 {
  color: var(--heading);
  font-size: 20px;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  background: var(--gradiente-principal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
}

.why-choose-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h3 {
  color: var(--heading);
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 700;
}

.cta-content p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PROJETOS ===== */
.projects {
  position: relative;
}

.projects-header {
  text-align: center;
  margin-bottom: 48px;
}

.projects-subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  justify-content: center;
  gap: 24px;
}

.project-card {
  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 201, 255, 0.25),
      transparent 55%
    ),
    rgba(10, 15, 25, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.6);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  padding: 22px 20px 20px;
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    rgba(37, 99, 235, 0),
    rgba(61, 225, 243, 0.28),
    rgba(37, 99, 235, 0),
    rgba(61, 225, 243, 0.18),
    rgba(37, 99, 235, 0)
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 0.7;
}

.project-card-header {
  position: relative;
  z-index: 1;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: rgba(226, 232, 240, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-title {
  margin: 10px 0 4px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.project-description {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 14px;
  max-width: 52ch;
}

.project-gallery {
  position: relative;
  z-index: 1;
  height: 200px;
  border-radius: 18px;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.96)
  );
  border: 1px solid rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.project-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease,
    opacity 0.25s ease;
}

.project-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.project-card:hover .project-image {
  transform: scale(1.03);
  filter: saturate(1.15);
}

.project-gallery-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.35);
  background: radial-gradient(
    circle at top left,
    rgba(37, 99, 235, 0.95),
    rgba(6, 95, 199, 0.95)
  );
  color: #f9fafb;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.8);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.project-gallery-badge:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 65px rgba(37, 99, 235, 0.95);
  border-color: rgba(248, 250, 252, 0.75);
}

.project-gallery-badge i {
  width: 14px;
  height: 14px;
}

.project-gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 12px;
  gap: 14px;
}

.project-gallery-counter {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  color: rgba(148, 163, 184, 0.98);
  font-size: 12px;
}

.project-gallery-counter span:first-child {
  font-weight: 600;
  color: #e5e7eb;
}

.project-gallery-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 1)
  );
  color: #e5e7eb;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.75);
  font-size: 11px;
  color: rgba(226, 232, 240, 0.9);
}

.project-extra {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.project-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
}

.project-techs {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

/* Lightbox / Modal Food Nect */
.project-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.project-lightbox.open {
  display: flex;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.98)
  );
  backdrop-filter: blur(12px);
}

.project-lightbox-content {
  position: relative;
  z-index: 1;
  width: min(1000px, 92vw);
  max-height: 86vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 201, 255, 0.25),
      transparent 60%
    ),
    rgba(10, 15, 25, 0.96);
  border-radius: 22px;
  border: 1px solid rgba(37, 99, 235, 0.75);
  box-shadow: 0 30px 120px rgba(15, 23, 42, 1);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 1)
  );
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 250, 252, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.95);
}

.lightbox-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.lightbox-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 1)
  );
  border: 1px solid rgba(30, 64, 175, 0.9);
  max-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 64vh;
  object-fit: contain;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.lightbox-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 1)
  );
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.95);
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 2px 0;
}

.lightbox-counter {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.98);
}

.lightbox-counter span:first-child {
  font-weight: 600;
  color: #e5e7eb;
}

.lightbox-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.zoom-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 1)
  );
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zoom-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
}

@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-card {
    padding: 22px 18px 20px;
  }

  .project-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-extra {
    align-items: flex-start;
    text-align: left;
  }

  .project-lightbox-content {
    width: 94vw;
    padding: 18px 16px 12px;
  }

  .lightbox-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .project-gallery-footer {
    flex-direction: row;
  }

  .project-gallery-counter {
    font-size: 11px;
  }

  .gallery-btn {
    width: 28px;
    height: 28px;
  }
}

/* ===== EQUIPE ===== */
.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.member-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.member-card:hover::before {
  left: 100%;
}

.member-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -20px rgba(37, 99, 235, 0.4);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.member-card:hover .avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--heading);
  transition: color 0.3s ease;
}

.member-card:hover .member-name {
  background: var(--gradiente-principal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-role {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.member-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.portfolio-link i {
  width: 32px;   /* aumenta o tamanho do ícone */
  height: 32px;
  stroke-width: 1.5; /* opcional, deixa o traço do ícone mais grosso */
  color: #3b82f6;    /* azul chamativo */
  transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-link:hover i {
  transform: scale(1.2);
  color: #2563eb; /* azul mais escuro no hover */
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px) scale(1.1);
}

/* ===== TESTEMUNHOS ===== */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.testimonials-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 13, 0.4);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 32px;
}

.testimonial-card {
  display: none;
  background: var(--card);
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px -20px rgba(37, 99, 235, 0.5);
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--heading);
  font-size: 16px;
  margin: 0 0 4px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* ===== CLIENTES ===== */
.clients-header {
  text-align: center;
  margin-bottom: 48px;
}

.clients-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.infiniteslide_wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 40px 0;
}

.infiniteslide_track {
  display: flex;
  gap: 32px;
  width: fit-content;
  animation: infiniteSlide 30s linear infinite;
}

.client-logo {
  padding: 20px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.client-logo:hover::before {
  left: 100%;
}

.client-logo img {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.client-name {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.client-logo:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.3);
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-logo:hover .client-name {
  color: var(--primary);
}

/* ===== FAQ ===== */
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTATO ===== */
.contact {
  position: relative;
  overflow: hidden;
  padding-bottom: 96px;
}

.contact-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.contact-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 13, 0.4);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: rgba(15, 17, 21, 0.62);
  border: 1px solid rgba(31, 41, 55, 0.8);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  margin-top: 40px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Efeito hover no card */
.contact-info:hover {
  transform: translateY(-5px); /* sobe um pouco */
  background-color: rgba(15, 17, 21, 0.8); /* escurece levemente */
  border-color: #3b82f6; /* azul no hover */
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}


.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradiente-principal);
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.1);
}

.contact-item h4 {
  color: var(--heading);
  font-size: 16px;
  margin: 0 0 4px;
}

.contact-item p {
  color: var(--text);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px) scale(1.1);
}

.contact-form {
  background: rgba(13, 15, 20, 0.72);
  border: 1px solid rgba(31, 41, 55, 0.85);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

#submitBtn.loading #submitText,
#submitBtn.loading #submitIcon {
  opacity: 0;
}

#submitBtn.loading .btn-loading {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  font-size: 14px;
  position: relative;
  margin-top: 0;
  z-index: 3;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Evita que o footer “invada” a última seção em telas menores */
@media (max-width: 980px) {
  .contact {
    padding-bottom: 64px;
  }
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-inner a:hover {
  color: white;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: var(--text);
}

.loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.logo-animation {
  position: relative;
  width: 80px;
  height: 80px;
}

.hexagon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonFloat 3s ease-in-out infinite;
}

.hexagon:nth-child(1) {
  top: 0;
  left: 20px;
  animation-delay: 0s;
  background: var(--primary);
}

.hexagon:nth-child(2) {
  top: 20px;
  left: 0;
  animation-delay: 0.5s;
  background: var(--ciano-claro);
}

.hexagon:nth-child(3) {
  top: 20px;
  left: 40px;
  animation-delay: 1s;
  background: var(--ciano-brilhante);
}

.loading-logo span {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradiente-principal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradiente-principal);
  width: 0%;
  animation: progressLoad 2s ease-in-out forwards;
}

.progress-text {
  font-size: 14px;
  color: var(--muted);
}

/* ===== PARTÍCULAS ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  animation: particleFloat 20s infinite linear;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hexagonFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) rotate(240deg);
  }
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

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

/* ===== ANIMAÇÕES DE ENTRADA DOS CARDS ===== */
.number-card,
.service-card,
.benefit-card,
.member-card,
.project-card {
  animation: cardEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.number-card:nth-child(1) {
  animation-delay: 0.1s;
}
.number-card:nth-child(2) {
  animation-delay: 0.2s;
}
.number-card:nth-child(3) {
  animation-delay: 0.3s;
}
.number-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.member-card:nth-child(1) {
  animation-delay: 0.1s;
}
.member-card:nth-child(2) {
  animation-delay: 0.2s;
}
.member-card:nth-child(3) {
  animation-delay: 0.3s;
}

.project-card:nth-child(1) {
  animation-delay: 0.15s;
}
.project-card:nth-child(2) {
  animation-delay: 0.25s;
}
.project-card:nth-child(3) {
  animation-delay: 0.35s;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 64px 16px auto 16px;
    display: grid;
    gap: 14px;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    transform-origin: top right;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    height: 70vh;
  }

  .hero-content {
    padding: 72px 0 48px;
  }

  .hero-brand {
    padding: 8px 12px;
    gap: 10px;
  }

  .hero-logo {
    width: 40px;
    height: 40px;
  }

  .hero-mobile-video {
    display: block;
  }

  .hero-desktop {
    display: none;
  }

  .mobile-video {
    object-position: center 25%;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .infiniteslide_track {
    gap: 16px;
    animation-duration: 20s;
  }

  .client-logo {
    padding: 14px 24px;
    height: 80px;
    gap: 12px;
  }

  .client-logo img {
    max-width: 100px;
    max-height: 45px;
  }

  .client-name {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .notice-wrap {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== UTILITÁRIOS ===== */
.hidden {
  display: none !important;
}

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

.mb-4 {
  margin-bottom: 24px;
}

.mt-4 {
  margin-top: 24px;
}
