﻿:root {
  --bg: #FFFFFF;
  --text: #0B2347;
  --muted: #476A96;
  --accent1: #1B6DE0;
  --accent2: #3AA0FF;
  --accent-dark: #0B5064;
  --card: #FFFFFF;
  --border: rgba(11, 27, 43, 0.12);
  --glow: rgba(27, 109, 224, 0.22);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 40px rgba(6, 32, 52, 0.12);
  --shadow-glow: 0 0 30px rgba(27, 109, 224, 0.24);
  --max-width: 1120px;
  --header-height: 72px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", "Sora", sans-serif;
  background: linear-gradient(180deg, #F3FFFB 0%, #FFFFFF 40%, #FFFFFF 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "DM Sans", sans-serif;
  letter-spacing: -0.02em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent1);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--accent1);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  color: var(--text);
}

.logo-icon {
  width: auto;
  height: 44px;
  filter: drop-shadow(0 0 12px rgba(27, 109, 224, 0.25));
}

.logo-desktop {
  width: 220px;
  height: 52px;
  object-fit: contain;
}

.logo-mobile {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: none;
}

.logo-text {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Sora", "DM Sans", sans-serif;
  letter-spacing: -0.02em;
}

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

.nav a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a.active::after {
  content: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 32, 52, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(80vw, 320px);
  background: var(--card);
  border-left: 1px solid var(--border);
  padding: 96px 32px 32px;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 1001;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile .btn {
  margin-top: 16px;
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: calc(var(--header-height) + 24px);
}

section {
  padding: clamp(32px, 4vw, 60px) 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

#contato {
  scroll-margin-top: calc(var(--header-height) + 24px - 11vh);
}

#servicos {
  scroll-margin-top: calc(var(--header-height) + 24px - 7vh);
}

.hero {
  padding-top: clamp(56px, 8vw, 96px);
  background: radial-gradient(circle at top left, rgba(27, 109, 224, 0.22), transparent 55%),
              radial-gradient(circle at 75% 15%, rgba(58, 160, 255, 0.18), transparent 60%);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.text-accent {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 109, 224, 0.12);
  border: 1px solid rgba(27, 109, 224, 0.25);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: var(--shadow-glow);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  margin-top: -20px;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin: 16px 0 12px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 109, 224, 0.14);
  color: var(--text);
  border: 1px solid rgba(27, 109, 224, 0.28);
}

.pill-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.mini-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(27, 109, 224, 0.08);
  border: 1px solid var(--border);
}

.mini-card strong {
  display: block;
  font-size: 1.4rem;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.trust {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  margin: 12px 0 8px;
}

.partners {
  padding-top: 22px;
}

.partners-track {
  overflow: hidden;
  padding: 8px 0 16px;
  contain: content;
}

.partners-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: partners-scroll 35s linear infinite;
  padding: 0 4vw;
  will-change: transform;
}

.partner-card {
  width: min(280px, 80vw);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0;
  text-align: center;
}

.partner-logo {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

#about-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.about-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
}

.about-highlight ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services .lead:last-of-type {
  margin-top: 18px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(6, 32, 52, 0.16);
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--accent1);
}

.card h3 {
  margin: 14px 0 10px;
}

.card p {
  color: var(--muted);
}

.two-columns {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: var(--shadow-glow);
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(27, 109, 224, 0.18), rgba(58, 160, 255, 0.16));
  border: 1px solid rgba(27, 109, 224, 0.35);
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  padding: 0 22px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
}

.faq-panel p {
  color: var(--muted);
  padding-bottom: 18px;
}

.faq-panel.open {
  opacity: 1;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 109, 224, 0.5);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-copy .lead {
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 14px;
  max-width: 34ch;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.contact-copy .muted {
  max-width: 44ch;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #FFFFFF;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(27, 109, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(27, 109, 224, 0.18);
}

textarea {
  resize: vertical;
}

.form-hint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: #FFFFFF;
  padding: 48px 0 24px;
}

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

.footer h4 {
  margin-bottom: 12px;
}

.footer p,
.footer a,
.footer span:not(.logo-text),
.footer-bottom {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
}

.footer h4 {
  -webkit-text-fill-color: var(--accent1);
  color: var(--accent1);
}

.footer .logo-text {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer a,
.footer span:not(.logo-text) {
  display: block;
  margin-bottom: 8px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  text-align: left;
}

.icon-inline {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
  color: var(--text);
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  white-space: nowrap;
}

.footer .footer-bottom span {
  display: inline;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(27, 109, 224, 0.3);
}

.btn-outline {
  border-color: var(--accent1);
  background: #FFFFFF;
  color: var(--accent1);
}

.btn-outline:hover {
  border-color: var(--accent1);
  background: rgba(27, 109, 224, 0.08);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-4px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-card {
    padding: 24px;
  }
}


@media (min-width: 960px) {
  .nav-mobile,
  .menu-overlay {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .about-highlight {
    margin-top: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .partners-marquee {
    animation: none;
  }
}
