/* ============================================================
   style.css — Sentsuy Corp | Site Institucional
   Responsável: Design System global, variáveis CSS e layouts
   ============================================================ */

/* ---- Importação de fontes modernas do Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ---- Reset e box model padrão ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Variáveis globais de design (tokens) ---- */
:root {
  --bg-dark:       #0A0F1E;
  --bg-section:    #0D1526;
  --bg-card:       #111827;
  --bg-card-hover: #161f35;
  --accent:        #00D4AA;
  --accent-glow:   rgba(0, 212, 170, 0.25);
  --accent-2:      #3B82F6;
  --accent-2-glow: rgba(59, 130, 246, 0.2);
  --gradient:      linear-gradient(135deg, #00D4AA 0%, #3B82F6 100%);
  --text-main:     #F1F5F9;
  --text-muted:    #94A3B8;
  --text-faint:    #475569;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(0, 212, 170, 0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(0, 212, 170, 0.15);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --font-body:     'Inter', sans-serif;
  --font-heading:  'Space Grotesk', sans-serif;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:      72px;
}

/* ---- Base do documento ---- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Scrollbar customizada ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ---- Seleção de texto ---- */
::selection { background: var(--accent); color: var(--bg-dark); }

/* ============================================================
   UTILITÁRIOS GLOBAIS
   ============================================================ */

/* Container centralizado e responsivo */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tags de label/badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* Títulos de seção */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo de seção */
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Classe para centralizar texto */
.text-center { text-align: center; }

/* Animação de entrada via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Botão primário (CTA) — cor accent com glow */
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }

/* Botão secundário — outline */
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Botão WhatsApp verde */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20ba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   HEADER / NAVEGAÇÃO
   ============================================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Estado padrão — transparente sobre o hero */
#header.transparent {
  background: transparent;
}

/* Estado scrollado — glassmorphism */
#header.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.logo span { color: var(--accent); }

/* Navegação desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 99px;
}

.nav a:hover, .nav a.active {
  color: var(--text-main);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

/* CTA no header */
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Botão hamburguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Grade de fundo animada */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Orb/bolha de luz de fundo */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* Tag animada acima do título */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Título principal do hero */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo do hero */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

/* Grupo de botões CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Estatísticas abaixo dos botões */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.9s ease 0.4s both;
  flex-wrap: wrap;
}

.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Elemento visual decorativo do hero (lado direito) */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  pointer-events: none;
}

.hero-visual-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 320px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.vcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vcard-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,212,170,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.vcard-title { font-weight: 600; font-size: 0.9rem; }
.vcard-sub { font-size: 0.75rem; color: var(--text-muted); }

.vcard-bar { height: 4px; background: var(--border); border-radius: 99px; margin: 10px 0; overflow: hidden; }
.vcard-bar-fill { height: 100%; background: var(--gradient); border-radius: 99px; animation: grow 2s ease-out both; }

@keyframes grow {
  from { width: 0; }
}

.vcard-items { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.vcard-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.vcard-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Keyframes de animações de entrada */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SEÇÃO DE DESTAQUE — CATALOG PRO
   ============================================================ */

.catalog-showcase {
  padding: 100px 0 40px;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.98) 0%, rgba(13, 21, 38, 1) 100%);
  position: relative;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.catalog-copy {
  position: relative;
  z-index: 1;
}

.catalog-sub {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.catalog-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.catalog-features span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
}

.catalog-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

.catalog-preview {
  display: flex;
  justify-content: center;
}

.catalog-preview-card {
  width: min(100%, 470px);
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  border-top: 2px solid rgba(0, 212, 170, 0.7);
  transform: rotate(0.6deg);
}

.catalog-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green { background: #22c55e; }
.dot-yellow { background: #fbbf24; }
.dot-red { background: #ef4444; }

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.catalog-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--text-main);
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.product-visual {
  width: 100%;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00D4AA 0%, #3B82F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-row strong {
  color: var(--text-main);
  font-size: 1.05rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.catalog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.catalog-actions button {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #00D4AA 0%, #3B82F6 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.catalog-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}

.catalog-cta {
  margin-bottom: 0;
}

/* ============================================================
   SEÇÃO DE SERVIÇOS
   ============================================================ */

#servicos {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}

@media (max-width: 768px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-preview-card {
    transform: none;
  }

  .catalog-product {
    grid-template-columns: 1fr;
  }

  .catalog-actions {
    flex-direction: column;
  }

  .catalog-actions button,
  .catalog-actions a {
    width: 100%;
  }
}

#servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* Grid de cards de serviços — 3 por linha, última linha centralizada */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card de serviço */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Gradiente sutil no topo do card ao hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { transform: scaleX(1); }

/* Ícone do card */
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  font-size: 1.6rem;
}

.service-card:hover .card-icon {
  background: rgba(0, 212, 170, 0.2);
  transform: scale(1.1);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Centraliza o 4º e 5º card (última linha) */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  /* Centraliza os últimos dois cards */
}

/* Wrapper para centralizar linha inferior com 2 cards */
.services-bottom-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.services-bottom-row .service-card {
  width: calc(33.333% - 12px);
}

/* ============================================================
   SEÇÃO DE PARCEIROS
   ============================================================ */

#parceiros {
  padding: 80px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 40px;
}

/* Carrossel infinito de logos via CSS animation */
.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 0;
  animation: carousel 30s linear infinite;
  width: max-content;
}

.carousel-track:hover { animation-play-state: paused; }

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

/* Card de parceiro/logo */
.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

/* Texto placeholder para o logo */
.partner-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-faint);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  user-select: none;
}

.partner-logo:hover .partner-logo-text { color: var(--text-muted); }

/* ============================================================
   SEÇÃO DE VAGAS
   ============================================================ */

#vagas {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}

#vagas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0.3;
}

/* Layout de duas colunas: vagas + formulário */
.vagas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Cards de vagas abertas */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.job-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.job-card:hover::after { transform: scaleY(1); }

.job-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.job-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}
.job-badge.remote { background: rgba(0,212,170,0.1); color: var(--accent); border: 1px solid rgba(0,212,170,0.2); }
.job-badge.type { background: rgba(59,130,246,0.1); color: var(--accent-2); border: 1px solid rgba(59,130,246,0.2); }

.job-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Formulário de candidatura */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Campos de formulário */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-faint); }

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option { background: var(--bg-card); color: var(--text-main); }

/* Campo de upload de arquivo */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-faint);
}

.file-upload:hover .file-upload-label,
.file-upload.has-file .file-upload-label {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 170, 0.05);
}

.file-icon { font-size: 1.2rem; }
.file-name-display { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */

#footer {
  background: #07091A;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* Informações de contato no footer */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--accent); }
.contact-icon { font-size: 1rem; flex-shrink: 0; }

/* Rodapé inferior com copyright */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.83rem;
  color: var(--text-faint);
}

.footer-badge {
  font-size: 0.83rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-badge .accent { color: var(--accent); }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bottom-row .service-card { width: calc(50% - 12px); }
  .vagas-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav { display: none; }
  .hamburger { display: flex; }

  /* Hero mobile */
  .hero-stats { gap: 24px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  /* Serviços mobile — uma coluna */
  .services-grid { grid-template-columns: 1fr; }
  .services-bottom-row { flex-direction: column; }
  .services-bottom-row .service-card { width: 100%; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; }
  .form-box { padding: 24px; }
  .job-card { padding: 20px; }
}

/* ============================================================
   NOTIFICAÇÃO / TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  font-size: 0.9rem;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon { font-size: 1.2rem; }
.toast-msg { flex: 1; line-height: 1.4; }

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */

#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover { transform: translateY(-2px) scale(1.05); }
