:root {
  --blue: #1a61b3;
  --blue-dark: #134d91;
  --blue-light: #e8f0fb;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f7;
  --gray-300: #d1d6e3;
  --gray-500: #7a849e;
  --gray-700: #3c4561;
  --ink: #0e1828;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 2px 16px rgba(26, 97, 179, 0.09);
  --shadow-md: 0 6px 32px rgba(26, 97, 179, 0.13);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* img {
  display: block;
  max-width: 100%;
} */
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow-white {
  color: rgba(255, 255, 255, 0.65);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--ink);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
p {
  color: var(--gray-700);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .eyebrow {
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Section alternation ── */
.sec-white {
  background: var(--white);
}
.sec-blue {
  background: var(--blue);
}
.sec-blue h2,
.sec-blue h3,
.sec-blue p,
.sec-blue li {
  color: rgba(255, 255, 255, 0.88);
}
.sec-blue .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}
.sec-blue .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  max-width: 200px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  display: flex;
  gap: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
#hero {
  padding: 152px 0 96px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text .eyebrow {
  margin-bottom: 20px;
}
.hero-text h1 {
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.laptop {
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(26, 97, 179, 0.18));
}
.phone-badge {
  position: absolute;
  bottom: -12px;
  right: -10px;
  width: 30%;
  filter: drop-shadow(0 12px 28px rgba(26, 97, 179, 0.22));
  border-radius: 20px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-light);
  z-index: -1;
}
.blob-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -100px;
  opacity: 0.5;
}
.blob-2 {
  width: 220px;
  height: 220px;
  bottom: 40px;
  left: -60px;
  opacity: 0.35;
}

/* ── Services (white bg) ── */
#servicos {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Diferenciais (blue bg) ── */
#diferenciais {
  background: var(--blue);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diff-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.diff-text > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}
.diff-list {
  display: grid;
  gap: 16px;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.diff-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.diff-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.diff-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.diff-item-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.diff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Quem somos (white bg) ── */
#quem-somos {
  background: var(--white);
}
.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.quem-text h2 {
  margin-bottom: 16px;
}
.quem-text p {
  margin-bottom: 18px;
  line-height: 1.75;
}
.quem-text .btn {
  margin-top: 12px;
}
.founder-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.founder-photo {
  height: 300px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-info {
  padding: 28px 32px;
}
.founder-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.founder-info p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ── Processo (blue bg) ── */
#processo {
  background: var(--blue);
}
#processo .section-header h2 {
  color: var(--white);
}
#processo .section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.process-track {
  position: relative;
  display: flex;
  gap: 0;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(10% + 14px);
  right: calc(10% + 14px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.process-step.active .step-num,
.process-step:hover .step-num {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue);
}
.process-step h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ── Depoimentos (white bg) ── */
#depoimentos {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: #f5a623;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── CTA (blue bg) ── */
#cta {
  background: var(--blue);
  padding: 96px 0;
}
.cta-inner {
  text-align: center;
}
#cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
#cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
footer {
  background: var(--ink);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand .logo span {
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}
.footer-col ul {
  display: grid;
  gap: 10px;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover {
  background: var(--blue);
}
.social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up.d1 {
  animation-delay: 0.1s;
}
.fade-up.d2 {
  animation-delay: 0.22s;
}
.fade-up.d3 {
  animation-delay: 0.34s;
}
.fade-up.d4 {
  animation-delay: 0.46s;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .mockup-wrap {
    max-width: 380px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .quem-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-track {
    flex-wrap: wrap;
    gap: 24px;
  }
  .process-track::before {
    display: none;
  }
  .process-step {
    min-width: 140px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 72px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .diff-stats {
    grid-template-columns: 1fr 1fr;
  }
  .values-row {
    grid-template-columns: 1fr 1fr;
  }
}
