:root {
  --blue-dark: #08213f;
  --blue: #176aa9;
  --blue-light: #d9edf9;
  --blue-soft: #eef7fc;
  --text: #071b36;
  --muted: #4c5f73;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 18px 45px rgba(8, 33, 63, 0.10);
  --radius: 18px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 35%, #f5faff 100%);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

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

/* HEADER */

.header {
  width: 100%;
  height: 74px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(8, 33, 63, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border: 3px solid var(--blue);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.logo strong {
  display: block;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: 1px;
}

.logo span {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue-dark);
  white-space: nowrap;
}

.nav a {
  transition: 0.25s ease;
}

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

.btn-header,
.btn-primary {
  background: var(--blue);
  color: white !important;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.25s ease;
}

.btn-header:hover,
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */

.hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 30%, rgba(220, 239, 249, 0.9), transparent 35%),
    linear-gradient(90deg, #f8fcff 0%, #eef7fc 48%, #d7edf9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -140px;
  width: 60%;
  height: 290px;
  background: linear-gradient(130deg, rgba(33, 141, 213, 0.95), rgba(7, 43, 80, 0.95));
  border-radius: 55% 0 0 0;
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  right: 7%;
  top: 40px;
  width: 560px;
  height: 520px;
  background: rgba(255, 255, 255, 0.60);
  border-radius: 50%;
  z-index: 1;
}

.snowflake {
  position: absolute;
  color: rgba(23, 106, 169, 0.18);
  font-size: 190px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.snowflake-left {
  left: -70px;
  top: 120px;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 35px;
}

.hero-text {
  padding: 65px 0;
}

.tag {
  display: inline-flex;
  color: var(--blue);
  background: rgba(23, 106, 169, 0.08);
  border: 1px solid rgba(23, 106, 169, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -2px;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero h1 strong {
  display: block;
  color: var(--blue);
}

.hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 550px;
  margin-bottom: 40px;
}

.hero-benefits {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 145px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
}

.hero-benefits span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  height: 470px;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 28px 50px rgba(8, 33, 63, 0.22));
  clip-path: ellipse(75% 58% at 60% 52%);
}

/* GERAL */

.section {
  padding: 36px 0;
}

.no-top {
  padding-top: 0;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: stretch;
}

.image-card,
.white-card,
.values-card,
.services-box,
.differentials-card,
.steps-box,
.cta-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(23, 106, 169, 0.08);
}

.image-card {
  min-height: 260px;
}

.image-card img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.content-block,
.white-card {
  padding: 34px;
}

.content-block h2,
.white-card h2,
.services-content h2,
.differentials-card h2,
.steps-content h2,
.cta-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.content-block p,
.white-card p,
.cta-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.benefit-icons {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-icons div {
  text-align: center;
}

.benefit-icons span {
  color: var(--blue);
  display: block;
  font-size: 34px;
  margin-bottom: 10px;
}

.benefit-icons strong {
  font-size: 12px;
  line-height: 1.35;
  display: block;
}

/* SOBRE */

.stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.stats span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* VALORES */

.values-area {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: stretch;
}

.small-image {
  min-height: 210px;
}

.small-image img {
  min-height: 210px;
}

.values-card {
  padding: 28px;
}

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

.values-grid span {
  color: var(--blue);
  font-size: 30px;
  display: block;
  margin-bottom: 12px;
}

.values-grid h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.values-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* SERVIÇOS */

.services-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.80) 45%, rgba(218,239,250,0.65) 100%);
}

.services-content {
  padding: 34px;
}

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

.service-item span {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: white;
  border-radius: 9px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service-item h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.services-image {
  position: relative;
  overflow: hidden;
}

.services-image::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -70px;
  width: 120%;
  height: 140px;
  background: linear-gradient(130deg, rgba(33, 141, 213, 0.85), rgba(7, 43, 80, 0.95));
  border-radius: 50% 50% 0 0;
}

.services-image img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* DIFERENCIAIS */

.differentials-card {
  padding: 32px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 30px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  text-align: center;
}

.differentials-grid span {
  color: var(--blue);
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.differentials-grid p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

/* COMO FUNCIONA */

.steps-box {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(239,247,252,0.9));
}

.steps-content {
  padding: 34px;
}

.steps-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 15px;
  align-items: start;
}

.step span {
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 15px;
}

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

.step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.arrow {
  color: var(--blue);
  font-size: 24px;
  margin-top: 35px;
}

.steps-image img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

/* DEPOIMENTOS */

.testimonial {
  margin-top: 25px;
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(8, 33, 63, 0.06);
}

.testimonial > span {
  color: var(--blue);
  font-size: 54px;
  line-height: 0.7;
  display: block;
}

.testimonial p {
  margin-bottom: 16px;
}

.testimonial strong,
.testimonial small {
  display: block;
}

.testimonial small {
  color: var(--muted);
  margin-top: 3px;
}

/* ÁREAS */

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.areas-content ul {
  list-style: none;
}

.areas-content li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.areas-content li::before {
  content: "●";
  color: var(--blue);
  margin-right: 8px;
  font-size: 10px;
}

.map-shape {
  height: 160px;
  background: rgba(23, 106, 169, 0.14);
  border-radius: 42% 58% 45% 55% / 40% 44% 56% 60%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 42px;
}

/* FAQ */

.faq-list {
  margin-top: 22px;
}

.faq-item {
  border-radius: 10px;
  background: rgba(23, 106, 169, 0.08);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 18px;
  font-size: 18px;
  color: var(--blue);
}

.faq-item.active button::after {
  content: "-";
}

.faq-item p {
  display: none;
  padding: 0 18px 18px;
  font-size: 14px;
}

.faq-item.active p {
  display: block;
}

/* CTA */

.cta-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f2f9fd 100%);
}

.cta-card h2 {
  max-width: 470px;
}

.cta-card p {
  max-width: 410px;
  margin-bottom: 26px;
}

.cta-snow {
  right: 35px;
  bottom: 15px;
  font-size: 180px;
}

/* FOOTER */

.footer {
  background: #061d37;
  color: white;
  padding: 36px 0 18px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.7fr;
  gap: 50px;
}

.footer-logo .logo-icon {
  border-color: white;
  color: white;
}

.footer-logo strong,
.footer-logo span {
  color: white;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 7px;
}

.footer h3 {
  font-size: 15px;
  margin-bottom: 15px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  background: white;
  color: #061d37;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* RESPONSIVO */

@media (max-width: 1150px) {
  .nav {
    gap: 11px;
    font-size: 9.5px;
  }

  .btn-header {
    padding: 11px 15px;
  }
}

@media (max-width: 980px) {
  .header {
    height: auto;
  }

  .header-content {
    min-height: 74px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 14px 30px rgba(8, 33, 63, 0.12);
    font-size: 13px;
    white-space: normal;
  }

  .nav.active {
    display: flex;
  }

  .btn-header {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    width: 100%;
    height: 170px;
    right: -30%;
  }

  .hero-bg-shape {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 50px 0 10px;
  }

  .hero-image {
    height: 390px;
  }

  .hero-image img {
    clip-path: ellipse(78% 58% at 55% 52%);
  }

  .grid-two,
  .values-area,
  .services-box,
  .differentials-card,
  .steps-box {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .image-card {
    order: -1;
  }

  .benefit-icons,
  .values-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .arrow {
    display: none;
  }

  .areas-content {
    grid-template-columns: 1fr 1fr;
  }

  .map-shape {
    grid-column: 1 / -1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .logo strong {
    font-size: 22px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-text {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-benefits {
    gap: 15px;
  }

  .hero-benefits div {
    max-width: none;
    width: 100%;
  }

  .hero-image {
    height: 300px;
  }

  .hero-image img {
    clip-path: ellipse(86% 60% at 55% 52%);
  }

  .section {
    padding: 22px 0;
  }

  .content-block,
  .white-card,
  .values-card,
  .services-content,
  .differentials-card,
  .steps-content,
  .cta-card {
    padding: 24px;
  }

  .content-block h2,
  .white-card h2,
  .services-content h2,
  .differentials-card h2,
  .steps-content h2,
  .cta-card h2 {
    font-size: 27px;
  }

  .benefit-icons,
  .values-grid,
  .services-grid,
  .differentials-grid,
  .stats,
  .areas-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card img {
    min-height: 220px;
  }

  .services-image img,
  .steps-image img {
    min-height: 240px;
  }

  .cta-snow {
    font-size: 120px;
    right: 15px;
    bottom: 10px;
  }
}