/* =========================================================
   GSYNTRA STARTUP LANDING PAGE
   Versão: Impactante tecnológica
   Ajuste: Tipografia profissional + textos responsivos
   Autor: GSYNTRA

   O que foi melhorado nesta versão:
   1. Fonte principal mais profissional: Inter.
   2. Títulos com peso forte, mas sem estourar a tela.
   3. Melhor espaçamento entre letras e linhas.
   4. Parágrafos mais legíveis, com tamanho e altura de linha equilibrados.
   5. Responsividade refinada para celular, tablet e desktop.
========================================================= */

 :root {
  /* Paleta institucional GSYNTRA: tecnologia, confiança e sofisticação.
     Mantive os nomes antigos (--gold) para não quebrar classes já existentes no HTML/JS. */
  --bg: #030712;
  --bg-2: #0F172A;
  --card: rgba(15, 23, 42, 0.76);
  --card-strong: rgba(17, 24, 39, 0.92);
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --muted-2: #94A3B8;

  /* Variáveis herdadas do projeto antigo.
     Agora representam azul/ciano da marca GSYNTRA, sem precisar alterar o HTML. */
  --gold: #2563EB;
  --gold-2: #38BDF8;
  --gold-3: #1D4ED8;

  --line: rgba(56, 189, 248, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 24px;
  --container: 1160px;

  /* Escala tipográfica profissional.
     Assim o site fica consistente como páginas SaaS modernas. */
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  overflow-x: hidden;

  /* Deixa o texto mais bonito e limpo em telas modernas. */
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.20), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(56, 189, 248, 0.12), transparent 26%),
    linear-gradient(135deg, #020617, #0F172A 45%, #030712);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  animation: bgMove 16s ease-in-out infinite alternate;
}

@keyframes bgMove {
  from { filter: hue-rotate(0deg); transform: scale(1); }
  to { filter: hue-rotate(-8deg); transform: scale(1.02); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 105px 0; position: relative; }

.scene-bg { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(32px); opacity: 0.35; animation: floatOrb 9s ease-in-out infinite alternate; }
.orb-1 { width: 300px; height: 300px; background: rgba(37, 99, 235, 0.35); top: 8%; left: -80px; }
.orb-2 { width: 260px; height: 260px; background: rgba(56, 189, 248, 0.16); top: 42%; right: -100px; animation-delay: 1.2s; }
.orb-3 { width: 190px; height: 190px; background: rgba(29, 78, 216, 0.25); bottom: 10%; left: 45%; animation-delay: 2s; }
.watermark { position: absolute; width: min(52vw, 560px); left: 50%; top: 48%; transform: translate(-50%, -50%); opacity: 0.045; mix-blend-mode: screen; animation: watermarkPulse 7s ease-in-out infinite; }

@keyframes floatOrb { to { transform: translate3d(28px, -34px, 0) scale(1.08); } }
@keyframes watermarkPulse { 0%, 100% { opacity: 0.035; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.06; transform: translate(-50%, -52%) scale(1.03); } }

.header { position: fixed; top: 0; width: 100%; z-index: 50; border-bottom: 1px solid transparent; transition: 0.35s ease; }
.header.scrolled { background: rgba(5, 5, 5, 0.78); backdrop-filter: blur(18px); border-color: var(--line); }
.navbar { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0.12em; }
.brand-icon { width: 42px; height: 42px; border-radius: 14px; object-fit: cover; box-shadow: 0 0 28px rgba(37, 99, 235, 0.35); }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 650; font-size: 0.96rem; letter-spacing: -0.01em; }
.nav-links a { position: relative; transition: color 0.25s ease; }
.nav-links a:not(.nav-button)::after { content: ""; position: absolute; height: 2px; width: 0; left: 0; bottom: -8px; background: linear-gradient(90deg, var(--gold), transparent); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after { width: 100%; }
.nav-button { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(37, 99, 235, 0.10); box-shadow: 0 0 28px rgba(37, 99, 235, 0.12); }
.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: var(--gold-2); margin: 6px 0; border-radius: 20px; }

/* =========================================================
   HERO PREMIUM V7
   Ajuste principal: título proporcional, grid equilibrado e imagem sem invadir o texto.
   A ideia é manter impacto visual sem parecer “estourado” ou amador.
========================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(112px, 12vh, 150px) 0 clamp(70px, 8vh, 105px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

/* Limita a área do texto para que a leitura fique elegante. */
.hero-content {
  max-width: 620px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); border: 1px solid var(--line); background: rgba(37, 99, 235, 0.08); padding: 10px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }

/* Título principal profissional.
   - clamp controla o tamanho em telas diferentes;
   - max-width segura a leitura;
   - as linhas no HTML controlam a quebra do texto. */
.hero h1 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.55vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 900;
  max-width: 650px;
  text-wrap: balance;
}

/* Cada linha do título fica como bloco para evitar quebras estranhas. */
.hero-title-line {
  display: block;
}

/* Linha intermediária levemente menor para dar respiro e aparência editorial. */
.hero-title-line--smaller {
  font-size: 0.86em;
  line-height: 1.06;
}


.hero h1 span,
.section-heading h2 span {
  color: var(--gold-2);
  text-shadow: 0 0 34px rgba(37, 99, 235, 0.30);
}

/* Parágrafo do hero mais elegante e legível. */
.hero p {
  margin-top: 26px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  font-weight: 450;
  letter-spacing: -0.012em;
}

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid var(--line); font-weight: 850; letter-spacing: -0.01em; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.btn::before { content: ""; position: absolute; inset: 0; transform: translateX(-120%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transition: transform 0.55s ease; }
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #F8FAFC; background: linear-gradient(135deg, var(--gold-2), var(--gold), #1D4ED8); box-shadow: 0 0 36px rgba(37, 99, 235, 0.30); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.trust-line { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); }
.trust-line span { padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.075); font-size: 0.92rem; font-weight: 650; letter-spacing: -0.01em; }
.trust-line i { color: var(--gold-2); margin-right: 6px; }

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 430px;
}

.logo-orbit {
  width: min(100%, 465px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(92%, 430px);
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 35px 100px rgba(0,0,0,0.65), 0 0 80px rgba(37,99,235,0.24);
  animation: floatLogo 4.8s ease-in-out infinite;
}
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(56, 189, 248, 0.22); box-shadow: inset 0 0 24px rgba(37,99,235,0.08), 0 0 40px rgba(37,99,235,0.08); }
.ring-1 { inset: 0; animation: spin 18s linear infinite; }
.ring-2 { inset: 34px; border-style: dashed; animation: spin 28s linear infinite reverse; }
@keyframes floatLogo { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(-1.2deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.section-heading { text-align: center; max-width: 780px; margin: 0 auto 52px; }

/* Títulos das seções com aparência premium, sem ficar pesado demais. */
.section-heading h2,
.result-copy h2,
.quote-copy h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 880;
  text-wrap: balance;
}

.section-heading p,
.result-copy p,
.quote-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 430;
  letter-spacing: -0.012em;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card, .price-card, .step, .stats-panel article, .quote-form, .faq-item, .project-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-card { padding: 30px; min-height: 260px; transition: 0.3s ease; }
.service-card i { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: var(--gold-2); background: rgba(37,99,235,0.10); font-size: 1.3rem; margin-bottom: 22px; }

.service-card h3,
.project-card h3,
.step h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.2;
  letter-spacing: -0.032em;
  font-weight: 850;
  margin-bottom: 12px;
}

.service-card p,
.project-card p,
.step p,
.faq-item p {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.98rem;
  font-weight: 430;
  letter-spacing: -0.01em;
}
.service-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(56,189,248,0.45); box-shadow: 0 28px 90px rgba(37,99,235,0.14); }

.results-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: center; }
.stats-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stats-panel article { padding: 28px; }
.stats-panel strong { display: block; color: var(--gold-2); font-size: clamp(2.1rem, 4.5vw, 3.65rem); line-height: 1; letter-spacing: -0.065em; font-weight: 900; }
.stats-panel span { color: var(--muted); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }

.carousel { width: 100%; overflow: hidden; padding: 10px 0 24px; }
.carousel-track { display: flex; gap: 20px; width: max-content; animation: slideCarousel 34s linear infinite; }
.carousel:hover .carousel-track { animation-play-state: paused; }
.project-card { width: min(76vw, 360px); min-height: 255px; padding: 30px; flex: 0 0 auto; transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease; }
.project-card span { display: inline-flex; color: var(--gold-2); font-weight: 900; margin-bottom: 24px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.project-card:hover { transform: scale(1.07) translateY(-8px); border-color: rgba(56,189,248,0.60); box-shadow: 0 0 0 1px rgba(56,189,248,0.15), 0 30px 85px rgba(37,99,235,0.20); }
@keyframes slideCarousel { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 10px)); } }

.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 28px; position: relative; overflow: hidden; }
.step strong { color: var(--gold-2); font-size: 1.9rem; display: block; margin-bottom: 26px; font-weight: 900; letter-spacing: -0.04em; }
.step::before { content: ""; position: absolute; top: 0; left: 28px; width: 1px; height: 100%; background: linear-gradient(var(--gold), transparent); opacity: 0.4; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { padding: 30px; position: relative; transition: 0.3s ease; }
.price-card h3 { color: var(--gold-2); font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.16; letter-spacing: -0.04em; font-weight: 900; margin-bottom: 12px; }
.price { font-size: 1.72rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; }
.price-card ul { list-style: none; display: grid; gap: 12px; margin: 24px 0; color: var(--muted); font-size: 0.98rem; line-height: 1.55; }
.price-card li::before { content: "✦"; color: var(--gold-2); margin-right: 10px; }
.price-card:hover, .price-card.featured { transform: translateY(-8px); border-color: rgba(56,189,248,0.45); box-shadow: 0 30px 95px rgba(37,99,235,0.16); }
.badge { display: inline-flex; margin-bottom: 18px; color: #F8FAFC; background: linear-gradient(135deg, var(--gold-2), var(--gold)); border-radius: 999px; padding: 8px 12px; font-weight: 900; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.btn-plan { width: 100%; color: var(--gold-2); background: rgba(37,99,235,0.10); }
.btn-plan:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #F8FAFC; }

.quote-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.quote-form { padding: 28px; display: grid; gap: 16px; }
.quote-form label { color: var(--muted); font-weight: 800; display: grid; gap: 9px; font-size: 0.95rem; letter-spacing: -0.01em; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid rgba(56,189,248,0.14); background: rgba(0,0,0,0.30); color: var(--text); border-radius: 16px; padding: 15px 16px; outline: none; font: inherit; transition: 0.25s ease; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(37,99,235,0.10); }
.full { width: 100%; border: 0; cursor: pointer; }

.faq-wrap { max-width: 880px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-item button { width: 100%; background: transparent; color: var(--text); border: 0; padding: 22px 24px; font: inherit; font-weight: 850; letter-spacing: -0.025em; cursor: pointer; display: flex; align-items: center; justify-content: space-between; text-align: left; }
.faq-item i { color: var(--gold-2); transition: transform 0.25s ease; }
.faq-item p { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height 0.28s ease, padding 0.28s ease; }
.faq-item.active p { max-height: 180px; padding: 0 24px 22px; }
.faq-item.active i { transform: rotate(180deg); }

.footer { padding: 42px 0; border-top: 1px solid var(--line); background: rgba(0,0,0,0.35); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.footer p { color: var(--muted); margin-top: 12px; font-size: 0.95rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 11px 14px; transition: 0.25s ease; font-weight: 650; font-size: 0.94rem; }
.footer-contact a:hover { color: var(--gold-2); transform: translateY(-2px); }

/* Animação ativada via JavaScript com IntersectionObserver */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 82px; left: 16px; right: 16px; display: grid; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(5,5,5,0.92); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: 0.25s ease; }
  .nav-links.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero-grid, .results-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; padding-top: 112px; }
  .hero-content { max-width: 760px; margin-inline: auto; }
  .hero h1 { margin-left: auto; margin-right: auto; max-width: 12.8ch; font-size: clamp(2.65rem, 7.4vw, 4.35rem); }
  .hero p { margin-left: auto; margin-right: auto; max-width: 650px; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { justify-content: center; min-height: auto; }
  .logo-orbit { width: min(74vw, 420px); }
  .hero-logo { width: min(92%, 390px); }
  .cards-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .container { width: min(100% - 24px, var(--container)); }
  .navbar { height: 74px; }
  .brand span { font-size: 0.86rem; letter-spacing: 0.11em; }
  .brand-icon { width: 38px; height: 38px; }
  .nav-links { top: 74px; }
  .hero { padding-top: 104px; min-height: auto; }

  /* Ajuste específico do título no celular.
     Mantém impacto visual, mas evita letras gigantes e cortes. */
  .hero h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -0.052em;
    max-width: 11.4ch;
  }

  .hero-title-line--smaller {
    font-size: 0.92em;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.68;
    max-width: 36ch;
  }

  .hero-actions .btn { width: 100%; }
  .cards-grid, .pricing-grid, .stats-panel, .process-line { grid-template-columns: 1fr; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-contact { justify-content: flex-start; }
}


@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.85rem);
    max-width: 11.2ch;
  }

  .hero p {
    max-width: 32ch;
  }

  .eyebrow {
    font-size: 0.68rem;
    padding: 9px 11px;
  }
}

/* =========================================================
   AJUSTES FINAIS V4 - GSYNTRA
   Objetivo: formulário limpo, sem número de exemplo visível,
   texto comercial mais profissional e rodapé refinado.
========================================================= */

/* Mantém os campos com aparência premium e placeholders discretos. */
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(189, 182, 170, 0.62);
  opacity: 1;
  font-weight: 600;
}

/* Evita que texto digitado pareça “sombra” dentro do input. */
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Rodapé com hierarquia visual mais profissional. */
.footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.72));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-about p {
  max-width: 440px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.65;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-menu a,
.footer-contact a {
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-menu a:hover {
  color: var(--gold-2);
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: rgba(255,255,255,0.035);
}

.footer-contact a:hover {
  color: #F8FAFC;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: rgba(56, 189, 248, 0.65);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-menu,
  .footer-contact {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   V6 — Ajuste de identidade no texto principal do hero
   Mantém a paleta GSYNTRA e cria hierarquia visual no título.
========================================================= */
.hero-title .highlight {
  color: var(--gold-2);
  text-shadow: 0 0 34px rgba(37, 99, 235, 0.34);
}

.hero-title .highlight-soft {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(37, 99, 235, 0.22);
}

/* =========================================================
   V6 — SynBot: Assistente virtual premium da GSYNTRA
   Visual: preto/grafite + dourado + glow, seguindo a logo.
========================================================= */
.synbot-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(56, 189, 248, 0.55);
  border-radius: 22px;
  background:
    radial-gradient(circle at 35% 25%, rgba(56, 189, 248, 0.42), transparent 34%),
    linear-gradient(145deg, #0F172A, #030712 52%, #2563EB 165%);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.06), 0 22px 52px rgba(0,0,0,0.55), 0 0 38px rgba(37,99,235,0.32);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: synbotFloat 3.8s ease-in-out infinite;
}

.synbot-fab:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(56, 189, 248, 0.85);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.08), 0 28px 70px rgba(0,0,0,0.65), 0 0 52px rgba(56,189,248,0.42);
}

.synbot-fab-glow {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: linear-gradient(135deg, transparent, rgba(56, 189, 248, 0.24), transparent);
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.synbot-face {
  position: relative;
  width: 38px;
  height: 30px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  border-radius: 14px 14px 12px 12px;
  background: linear-gradient(180deg, rgba(56,189,248,0.14), rgba(0,0,0,0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.synbot-face::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 11px;
  height: 8px;
  border-radius: 999px 999px 0 0;
  background: var(--gold-2);
  box-shadow: 0 0 14px rgba(56,189,248,0.7);
}

.synbot-eye,
.synbot-avatar-eye {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 12px rgba(56,189,248,0.9);
  animation: synbotBlink 4.5s infinite;
}

.synbot-panel {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 119;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 132px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(7, 7, 8, 0.92);
  box-shadow: 0 32px 100px rgba(0,0,0,0.72), 0 0 60px rgba(37,99,235,0.16);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.synbot-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.synbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.14);
  background: linear-gradient(135deg, rgba(37,99,235,0.20), rgba(0,0,0,0.10));
}

.synbot-avatar {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  border: 1px solid rgba(56, 189, 248, 0.48);
  background: radial-gradient(circle at 30% 20%, rgba(56,189,248,0.34), transparent 38%), #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 0 28px rgba(37,99,235,0.25);
}

.synbot-header strong {
  display: block;
  color: var(--gold-2);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.synbot-header span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.synbot-close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: 0.22s ease;
}

.synbot-close:hover {
  color: #F8FAFC;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.synbot-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(56,189,248,0.45) transparent;
}

.synbot-message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  white-space: pre-wrap;
}

.synbot-message.bot {
  align-self: flex-start;
  color: var(--text);
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(255,255,255,0.055);
}

.synbot-message.user {
  align-self: flex-end;
  color: #F8FAFC;
  font-weight: 750;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 34px rgba(37,99,235,0.16);
}

.synbot-message.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.synbot-message.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-2);
  animation: synbotTyping 0.9s infinite ease-in-out;
}

.synbot-message.typing span:nth-child(2) { animation-delay: 0.12s; }
.synbot-message.typing span:nth-child(3) { animation-delay: 0.24s; }

.synbot-chips {
  display: flex;
  gap: 8px;
  padding: 12px 14px 0;
  overflow-x: auto;
}

.synbot-chips button {
  flex: 0 0 auto;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--gold-2);
  background: rgba(37,99,235,0.08);
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}

.synbot-chips button:hover {
  color: #F8FAFC;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.synbot-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.synbot-form input {
  min-width: 0;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(0,0,0,0.34);
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.synbot-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}

.synbot-form button {
  border: 0;
  border-radius: 16px;
  color: #F8FAFC;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  cursor: pointer;
  box-shadow: 0 0 28px rgba(37,99,235,0.24);
  transition: 0.22s ease;
}

.synbot-form button:hover { transform: translateY(-2px); }

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

@keyframes synbotBlink {
  0%, 94%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(0.12); }
}

@keyframes synbotTyping {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 640px) {
  .synbot-fab {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .synbot-panel {
    right: 12px;
    left: 12px;
    bottom: 88px;
    width: auto;
    height: min(600px, calc(100vh - 112px));
    border-radius: 24px;
  }

  .synbot-message { max-width: 92%; }
}


/* =========================================================
   V8 — HERO REFINADO (estilo original + proporção premium)
   Objetivo:
   1. Voltar ao visual mais limpo da primeira versão.
   2. Destacar apenas "soluções digitais" em dourado.
   3. Impedir o título de estourar ou ficar pesado demais.
   4. Manter a imagem da marca alinhada e proporcional.
========================================================= */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(118px, 13vh, 150px) 0 clamp(70px, 8vh, 100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.hero-content {
  max-width: 670px;
}

/* Título principal com escala responsiva.
   - clamp evita letras gigantes demais;
   - max-width em ch cria quebras elegantes;
   - balance melhora a distribuição das linhas em navegadores modernos. */
.hero-title,
.hero h1 {
  margin-top: 24px;
  max-width: 15.8ch;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.35vw, 5.2rem);
  line-height: 0.99;
  font-weight: 900;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

/* Destaque único e elegante.
   Mantém a identidade GSYNTRA sem deixar a frase toda dourada. */
.hero-title span,
.hero h1 span {
  color: var(--gold-2);
  text-shadow: 0 0 28px rgba(37, 99, 235, 0.28);
}

/* Remove o efeito antigo dos destaques secundários da V7. */
.hero-title .highlight-soft {
  color: inherit;
  text-shadow: none;
}

.hero p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.75;
  font-weight: 450;
}

.hero-visual {
  justify-content: center;
  min-height: clamp(360px, 44vw, 500px);
}

.logo-orbit {
  width: min(100%, 480px);
}

.hero-logo {
  width: min(92%, 430px);
  border-radius: 32px;
}

/* Tablet: centraliza e deixa o hero respirar, sem imagem invadir o texto. */
@media (max-width: 980px) {
  .hero {
    text-align: center;
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 780px;
    margin-inline: auto;
  }

  .hero-title,
  .hero h1 {
    max-width: 14.5ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.85rem, 8.2vw, 4.75rem);
    line-height: 1;
  }

  .hero p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .logo-orbit {
    width: min(86vw, 420px);
  }
}

/* Celular: título forte, mas sem cortar palavras nem parecer estourado. */
@media (max-width: 640px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 68px;
  }

  .hero-title,
  .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(2.65rem, 12.3vw, 3.95rem);
    line-height: 1.02;
    letter-spacing: -0.058em;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 28px;
  }

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

  .logo-orbit {
    width: min(88vw, 340px);
  }

  .hero-logo {
    border-radius: 24px;
  }
}

@media (max-width: 390px) {
  .hero-title,
  .hero h1 {
    max-width: 11.2ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }
}

/* =========================================================
   AJUSTES V9 - ÍCONES PREMIUM + CTA DO CABEÇALHO MARCADO
   Pedido do Gui:
   1. Deixar os ícones da seção "Soluções digitais" maiores,
      minimalistas e centralizados, como referência de sites SaaS.
   2. Deixar o botão "Solicitar orçamento" do cabeçalho mais
      sinalizado/marcado, mantendo a identidade dourada da GSYNTRA.
========================================================= */

/* Botão principal do menu com destaque fixo.
   Assim o usuário entende rapidamente qual é a ação mais importante. */
.nav-links .nav-button {
  color: #120e08;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), #1D4ED8);
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 0 24px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-weight: 900;
}

/* Remove o sublinhado do botão CTA para não misturar com os links comuns. */
.nav-links .nav-button::after {
  display: none;
}

/* Efeito sutil de destaque no botão de orçamento. */
.nav-links .nav-button:hover {
  color: #120e08;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28),
    0 0 38px rgba(37, 99, 235, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

/* Organização visual dos cards de soluções.
   O layout passa a ter uma pegada mais parecida com cards de produto SaaS:
   ícone grande no topo, texto centralizado e bastante respiro. */
.services-grid {
  gap: 24px;
}

.service-card {
  min-height: 300px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  overflow: hidden;
}

/* Ícones maiores e mais limpos.
   Mantém a identidade dourada, mas adiciona um brilho tecnológico elegante. */
.service-card i {
  width: auto;
  height: auto;
  margin: 0 0 28px;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--gold-2);
  font-size: clamp(3.15rem, 4.6vw, 4.35rem);
  line-height: 1;
  filter:
    drop-shadow(0 0 16px rgba(56, 189, 248, 0.22))
    drop-shadow(0 0 34px rgba(37, 99, 235, 0.12));
  transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;
}

.service-card h3 {
  font-size: clamp(1.12rem, 1.4vw, 1.28rem);
  margin-bottom: 14px;
}

.service-card p {
  max-width: 30ch;
  margin-inline: auto;
}

/* Hover premium: card sobe e o ícone cresce sem ficar exagerado. */
.service-card:hover {
  transform: translateY(-10px) scale(1.018);
  border-color: rgba(56, 189, 248, 0.50);
  box-shadow:
    0 28px 90px rgba(37,99,235,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.service-card:hover i {
  transform: translateY(-5px) scale(1.08);
  color: #ffe18b;
  filter:
    drop-shadow(0 0 22px rgba(56, 189, 248, 0.38))
    drop-shadow(0 0 42px rgba(37, 99, 235, 0.20));
}

/* Em telas grandes, os cards de soluções ficam mais próximos da referência:
   quatro colunas quando houver espaço, sem quebrar no desktop. */
@media (min-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Ajuste no menu mobile: o CTA continua destacado dentro do dropdown. */
@media (max-width: 980px) {
  .nav-links .nav-button {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .service-card {
    min-height: 270px;
    padding: 34px 22px;
  }

  .service-card i {
    font-size: 3.2rem;
  }
}


/* =========================================================
   AJUSTE FINAL — Identidade tech GSYNTRA + Hero mais legível
   Objetivo: mudar cores sem quebrar o código e impedir título estourado.
========================================================= */
body::before {
  background:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(30, 64, 175, 0.18), transparent 34%),
    linear-gradient(135deg, #020617, #0F172A 46%, #030712);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
}

.header.scrolled {
  background: rgba(3, 7, 18, 0.82);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.hero-content {
  max-width: 720px;
}

.hero h1,
.hero-title {
  font-size: clamp(2.55rem, 4.15vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
  max-width: 760px;
}

.hero h1 span,
.section-heading h2 span,
.hero-title .highlight,
.hero-title .highlight-soft {
  color: var(--gold-2);
  text-shadow: 0 0 34px rgba(56, 189, 248, 0.30);
}

.btn-primary,
.btn-plan:hover,
.badge,
.synbot-message.user,
.synbot-close:hover,
.synbot-chips button:hover,
.footer-contact a:hover {
  background: linear-gradient(135deg, #38BDF8, #2563EB, #1D4ED8);
  color: #F8FAFC;
}

.service-card:hover,
.price-card:hover,
.price-card.featured,
.project-card:hover {
  border-color: rgba(56, 189, 248, 0.46);
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.18);
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 40px;
  }

  .hero h1,
  .hero-title {
    max-width: 14.5ch;
    font-size: clamp(2.45rem, 6.5vw, 3.9rem);
    line-height: 1.07;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .hero p {
    max-width: 40ch;
  }

  .hero-visual {
    margin-top: 10px;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(1.86rem, 8.7vw, 2.45rem);
  }
}

/* =========================================================
   PATCH FINAL V10 — RESPONSIVIDADE REAL DO HERO GSYNTRA
   Objetivo:
   - Adaptar o topo para qualquer tela: celular pequeno, celular grande, tablet e desktop.
   - Impedir que o título quebre palavra por palavra.
   - Evitar que a imagem/logo invada o texto no mobile.
   - Preservar HTML, JS e estrutura do projeto.
========================================================= */

/* Evita qualquer vazamento lateral causado por elementos decorativos. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* O hero agora respeita o tamanho disponível da tela. */
.hero {
  overflow: hidden;
}

/* Desktop: mantém visual forte, mas com texto em largura controlada. */
.hero-title,
.hero h1 {
  max-width: 720px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Tablet e telas médias: vira uma coluna limpa e centralizada. */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 72px;
    text-align: center;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-title,
  .hero h1 {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(2.4rem, 7vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .hero p {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-actions,
  .trust-line {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    margin-top: 4px;
    position: relative;
    z-index: 1;
  }

  .logo-orbit {
    width: min(58vw, 330px);
  }

  .hero-logo {
    width: min(92%, 300px);
  }
}

/* Celular: foco em leitura. A imagem fica menor e nunca cobre o texto. */
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .eyebrow {
    max-width: 340px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    font-size: 0.72rem;
    padding: 9px 13px;
    margin-inline: auto;
  }

  .hero-title,
  .hero h1 {
    max-width: 360px;
    margin-top: 22px;
    font-size: clamp(2.05rem, 8.6vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -0.038em;
    text-align: center;
  }

  .hero p {
    max-width: 340px;
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-line {
    max-width: 340px;
    margin-inline: auto;
    gap: 8px;
  }

  .trust-line span {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .logo-orbit {
    width: min(68vw, 250px);
    margin-inline: auto;
  }

  .hero-logo {
    width: min(92%, 230px);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.58), 0 0 42px rgba(37,99,235,0.20);
  }

  .orbit-ring {
    opacity: 0.7;
  }
}

/* Celulares pequenos: reduz um pouco mais para não cortar nada. */
@media (max-width: 420px) {
  .brand span {
    font-size: 0.9rem;
    letter-spacing: 0.09em;
  }

  .hero-title,
  .hero h1 {
    max-width: 330px;
    font-size: clamp(1.9rem, 8.2vw, 2.35rem);
    line-height: 1.14;
  }

  .hero p,
  .hero-actions,
  .trust-line {
    max-width: 320px;
  }

  .logo-orbit {
    width: min(64vw, 220px);
  }

  .hero-logo {
    width: min(92%, 205px);
  }
}

/* iPhones muito estreitos e celulares antigos. */
@media (max-width: 360px) {
  .hero-title,
  .hero h1 {
    max-width: 300px;
    font-size: 1.82rem;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .logo-orbit {
    width: 200px;
  }

  .hero-logo {
    width: 185px;
  }
}


/* =========================================================
   AJUSTE DOS CARDS CLICÁVEIS DO CARROSSEL
   Mantém o visual dos cards e garante clique correto.
========================================================= */
.project-card {
  text-decoration: none;
  color: inherit;
}

.project-link {
  display: block;
  cursor: pointer;
}

.project-card.production-card {
  display: block;
  color: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  text-align: left;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.project-card:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.75);
  outline-offset: 4px;
}


/* ===== NOVA GRADE DE SOLUÇÕES ===== */
.carousel-grid{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.carousel-grid .carousel-track{
  width:100%;
  display:grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
  animation:none !important;
  transform:none !important;
  align-items:stretch;
}

@media (max-width: 1100px){
  .carousel-grid .carousel-track{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .carousel-grid .carousel-track{
    grid-template-columns: 1fr;
  }
}

.carousel-grid .project-card{
  min-height:260px;
  transition: all .35s ease;
}

.carousel-grid .project-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* Remove duplicados visuais */
.carousel-grid .carousel-track > *:nth-child(n+7){
  display:none;
}


/* ===== AJUSTES DO BRIEFING COMERCIAL ===== */
.quote-benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.quote-benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.quote-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.quote-form .btn + .btn {
  margin-top: 12px;
}


.carousel-grid .project-card{
  width:100% !important;
  max-width:none !important;
}


/* =========================================================
   AJUSTE GSYNTRA — VISUAL PRETO + DOURADO, MAIS LIMPO
   Mantém a estrutura do projeto e troca apenas apresentação.
========================================================= */
:root{
  --bg:#050403;
  --bg-2:#0d0b08;
  --card:rgba(20,17,12,.76);
  --card-strong:rgba(25,21,15,.92);
  --text:#fffaf0;
  --muted:#d8c9ac;
  --muted-2:#a8956f;
  --gold:#c9962e;
  --gold-2:#f1c766;
  --gold-3:#8a5d18;
  --line:rgba(241,199,102,.22);
  --shadow:0 24px 80px rgba(0,0,0,.58);
}

body{
  background:
    radial-gradient(circle at 20% 0%, rgba(201,150,46,.12), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(241,199,102,.08), transparent 26%),
    linear-gradient(180deg, #050403 0%, #090806 48%, #050403 100%);
}

body::before{
  background-image:
    linear-gradient(rgba(241,199,102,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,199,102,.045) 1px, transparent 1px);
}

.header{
  background:rgba(5,4,3,.86);
  border-bottom:1px solid rgba(241,199,102,.14);
}

.brand-icon{
  box-shadow:0 0 24px rgba(241,199,102,.22);
}

.nav-links{
  gap:22px;
  font-size:.94rem;
}

.nav-links a:hover{
  color:var(--gold-2);
}

.nav-button,
.nav-links .nav-button,
.btn-primary,
.btn-plan:hover{
  color:#150f06 !important;
  background:linear-gradient(135deg, #fff0b7, var(--gold-2), var(--gold)) !important;
  border-color:rgba(241,199,102,.68) !important;
  box-shadow:0 0 24px rgba(241,199,102,.18), inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.btn-ghost{
  border-color:rgba(241,199,102,.20);
  background:rgba(255,255,255,.035);
}

.eyebrow{
  color:var(--gold-2);
  background:rgba(241,199,102,.075);
  border-color:rgba(241,199,102,.20);
  letter-spacing:.07em;
}

.hero{
  min-height:auto;
  padding-top:clamp(118px, 13vh, 150px);
  padding-bottom:clamp(68px, 9vh, 100px);
}

.hero h1{
  font-size:clamp(2.45rem, 4.1vw, 4.25rem);
  line-height:1.02;
  letter-spacing:-.045em;
  max-width:720px;
}

.hero h1 span,
.hero-title span,
.section-heading h2 span{
  color:var(--gold-2);
  text-shadow:0 0 24px rgba(241,199,102,.20);
}

.hero p{
  max-width:620px;
  font-size:clamp(1rem, 1.05vw, 1.08rem);
}

.hero-logo{
  box-shadow:0 35px 100px rgba(0,0,0,.68), 0 0 60px rgba(241,199,102,.13);
}

.orbit-ring{
  border-color:rgba(241,199,102,.20);
  box-shadow:inset 0 0 24px rgba(241,199,102,.06), 0 0 36px rgba(241,199,102,.06);
}

.section-heading{
  max-width:690px;
  margin-bottom:38px;
}

.section-heading h2,
.result-copy h2,
.quote-copy h2{
  font-size:clamp(1.8rem, 3vw, 2.75rem);
  line-height:1.12;
  letter-spacing:-.038em;
}

.section-heading p{
  max-width:58ch;
  margin-inline:auto;
  color:var(--muted);
}

.service-card{
  min-height:230px;
  padding:28px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(241,199,102,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.015));
  border-color:rgba(241,199,102,.13);
}

.service-card i{
  margin-bottom:18px;
  color:var(--gold-2);
  font-size:clamp(2.2rem, 3vw, 3.2rem);
  filter:drop-shadow(0 0 18px rgba(241,199,102,.18));
}

.service-card h3{
  font-size:1.05rem;
  margin-bottom:10px;
}

.service-card p{
  font-size:.94rem;
  line-height:1.55;
  color:var(--muted);
}

.service-card:hover{
  border-color:rgba(241,199,102,.45);
  box-shadow:0 24px 70px rgba(0,0,0,.38), 0 0 40px rgba(241,199,102,.07);
}

.service-card:hover i{
  color:#ffe38a;
  filter:drop-shadow(0 0 22px rgba(241,199,102,.30));
}

/* Nova grade de produtos: cards proporcionais e claramente clicáveis */
.carousel-grid,
.carousel-track,
.project-card{
  display:none !important;
}

.products-grid{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.product-card{
  position:relative;
  min-height:210px;
  width:100%;
  padding:24px;
  border:1px solid rgba(241,199,102,.16);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
    radial-gradient(circle at 100% 0%, rgba(241,199,102,.12), transparent 36%);
  color:var(--text);
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.product-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -55% 20%;
  height:120px;
  background:radial-gradient(circle, rgba(241,199,102,.13), transparent 66%);
  opacity:0;
  transition:opacity .28s ease;
}

.product-card:hover{
  transform:translateY(-7px);
  border-color:rgba(241,199,102,.52);
  box-shadow:0 24px 70px rgba(0,0,0,.40), 0 0 34px rgba(241,199,102,.10);
}

.product-card:hover::after{
  opacity:1;
}

.product-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:28px;
}

.product-number{
  color:var(--gold-2);
  font-weight:900;
  font-size:.94rem;
  letter-spacing:.08em;
}

.product-status{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(241,199,102,.22);
  background:rgba(241,199,102,.09);
  color:var(--gold-2);
  font-size:.72rem;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.product-status.muted{
  color:var(--muted);
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.045);
}

.product-card h3{
  font-size:clamp(1.18rem, 1.6vw, 1.45rem);
  line-height:1.15;
  letter-spacing:-.026em;
  margin-bottom:12px;
}

.product-card p{
  color:var(--muted);
  font-size:.96rem;
  line-height:1.55;
  max-width:32ch;
  margin-bottom:22px;
}

.product-card strong{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold-2);
  font-size:.92rem;
  font-weight:900;
}

.product-ready{
  border-color:rgba(241,199,102,.34);
}

/* Botão flutuante com paleta da marca */
.chatbot-toggle,
.synbot-button,
.bot-toggle{
  background:linear-gradient(135deg, #fff0b7, var(--gold-2), var(--gold)) !important;
  color:#150f06 !important;
  border-color:rgba(241,199,102,.52) !important;
  box-shadow:0 0 36px rgba(241,199,102,.24) !important;
}

@media (max-width: 1050px){
  .products-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .nav-links{
    gap:14px;
  }

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

  .product-card{
    min-height:190px;
    padding:22px;
  }

  .hero h1{
    font-size:clamp(2.25rem, 10.5vw, 3.35rem);
    max-width:12.5ch;
  }
}

@media (max-width: 980px){
  .nav-links{
    background:rgba(8,6,4,.94);
    border-color:rgba(241,199,102,.18);
  }
}


/* Footer refinado */
.footer{
  border-top:1px solid rgba(241,199,102,.12);
}

.footer-brand{
  gap:0;
}

.footer-brand p{
  max-width:420px;
  line-height:1.7;
  color:var(--muted);
  font-size:1rem;
}

.footer-links{
  gap:18px;
}

.footer-links a{
  opacity:.92;
  transition:all .25s ease;
}

.footer-links a:hover{
  color:var(--gold-2);
}

.footer-social{
  gap:14px;
}

.footer-social a{
  border-color:rgba(241,199,102,.22);
  background:rgba(255,255,255,.02);
}

.footer-social a:hover{
  transform:translateY(-3px);
  border-color:rgba(241,199,102,.45);
  box-shadow:0 0 24px rgba(241,199,102,.10);
}

.footer-bottom{
  margin-top:36px;
  padding-top:26px;
  border-top:1px solid rgba(241,199,102,.10);
}

.footer-bottom p{
  color:var(--muted-2);
}

/* Robô dourado */
.chatbot-toggle,
.synbot-button,
.bot-toggle{
  background:linear-gradient(135deg,#fff4c8,#f1c766,#c9962e) !important;
  color:#1a1207 !important;
  border:1px solid rgba(241,199,102,.52) !important;
  box-shadow:
    0 0 30px rgba(241,199,102,.28),
    0 0 60px rgba(241,199,102,.10) !important;
}

.chatbot-toggle svg,
.synbot-button svg,
.bot-toggle svg{
  color:#1a1207 !important;
  fill:#1a1207 !important;
}


/* Ajuste final: cards mais proporcionais e navegação mais limpa */
.products-grid{
  max-width:1120px !important;
  grid-template-columns:repeat(3, minmax(240px, 1fr)) !important;
  gap:18px !important;
}

.product-card{
  min-height:178px !important;
  padding:20px !important;
  border-radius:18px !important;
}

.product-top{
  margin-bottom:20px !important;
}

.product-card h3{
  font-size:1.18rem !important;
  margin-bottom:9px !important;
}

.product-card p{
  font-size:.92rem !important;
  line-height:1.45 !important;
  margin-bottom:16px !important;
}

.product-status{
  font-size:.66rem !important;
  padding:5px 9px !important;
}

.nav-links{
  align-items:center !important;
}

.nav-links a{
  white-space:nowrap !important;
}

@media (max-width:1050px){
  .products-grid{grid-template-columns:repeat(2, minmax(240px, 1fr)) !important;}
}
@media (max-width:680px){
  .products-grid{grid-template-columns:1fr !important;}
}
