:root {
  --azul: #1377c9;
  --roxo: #7542a8;
  --preto: #111111;
  --cinza: #5f6570;
  --cinza-claro: #f4f7fb;
  --branco: #ffffff;
  --borda: #e6e9ef;
  --sombra: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borda);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-logo {
  width: 220px;
  height: 72px;
  flex: 0 0 auto;
  background-size: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #303744;
  font-weight: 600;
  font-size: 14px;
}

nav a:hover {
  color: var(--azul);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  color: var(--branco);
  box-shadow: 0 12px 26px rgba(19, 119, 201, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(19, 119, 201, 0.32);
}

.btn-outline {
  border-color: var(--borda);
  color: var(--preto);
  background: var(--branco);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--branco);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
  gap: 8px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
}

.btn-whatsapp svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-email {
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  color: var(--branco);
  box-shadow: 0 12px 26px rgba(19, 119, 201, 0.25);
  gap: 8px;
}

.btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(19, 119, 201, 0.34);
}

.btn-email svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(19, 119, 201, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(117, 66, 168, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19, 119, 201, 0.08);
  color: var(--azul);
  border: 1px solid rgba(19, 119, 201, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--cinza);
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
  align-items: center;
  justify-content: flex-start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 660px;
}

.stat {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.stat strong {
  display: block;
  font-size: 22px;
  color: var(--preto);
}

.stat span {
  color: var(--cinza);
  font-size: 13px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--borda);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--sombra);
  position: relative;
}

.hero-logo {
  min-height: 260px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(19, 119, 201, 0.12), rgba(117, 66, 168, 0.12)),
    #fff;
  border: 1px solid var(--borda);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  text-align: center;
  padding: 1px;
}

.hero-logo-large {
  width: min(100%, 1120px);
  height: min(100%, 420px);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #303744;
  font-weight: 600;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--roxo));
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  font-size: 14px;
}

section {
  padding: 82px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--azul);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--cinza);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(19, 119, 201, 0.14), rgba(117, 66, 168, 0.14));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--azul);
}

.icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--cinza);
  font-size: 15px;
}

.about {
  background: var(--cinza-claro);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about-box {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--sombra);
}

.about-box ul {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.about-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #313846;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--borda);
  background: var(--branco);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--preto);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  color: var(--cinza);
  font-size: 14px;
}

.cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 30%),
    linear-gradient(135deg, var(--azul), var(--roxo));
  color: var(--branco);
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta h2 {
  color: var(--branco);
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 740px;
  font-size: 17px;
}

.cta .btn {
  background: var(--branco);
  color: var(--preto);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.cta .btn-whatsapp,
.cta .btn-email {
  background: var(--branco);
  color: var(--preto);
}

footer {
  background: #0f1218;
  color: #d8dde8;
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer h3 {
  color: #fff;
  margin-bottom: 14px;
}

footer p,
footer a,
footer li {
  color: #aeb6c6;
  font-size: 14px;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.copyright {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #8f98aa;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.30);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .navbar {
    align-items: center;
  }

  .navbar-actions {
    gap: 8px;
  }

  .navbar-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-logo {
    width: 160px;
    height: 54px;
  }

  .hero-grid,
  .about-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    padding: 22px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .navbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .navbar-actions .btn {
    flex: 1 1 auto;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
