@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy-950: #052d49;
  --navy-900: #073f62;
  --navy-800: #075779;
  --blue-500: #66a9d2;
  --blue-100: #e9f5fb;
  --blue-50: #f4f9fc;
  --green: #23d160;
  --green-dark: #149748;
  --white: #fff;
  --ink: #102e43;
  --muted: #5d7180;
  --line: #d7e5ed;
  --container: 1210px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --shadow-lg: 0 30px 70px rgba(1, 42, 68, .22);
  --shadow-md: 0 18px 45px rgba(5, 63, 98, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 1000; padding: 10px 14px; background: var(--navy-900); color: white; border-radius: 10px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(215, 229, 237, .85);
  backdrop-filter: blur(16px);
}
.header-row { min-height: 80px; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 27px; }
.main-nav a { color: #2e4f63; font-size: .9rem; font-weight: 750; white-space: nowrap; }
.main-nav a:hover { color: var(--navy-800); }
.menu-button { display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; border-radius: 10px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-large { min-height: 56px; padding-inline: 28px; }
.button-header { color: white; background: var(--navy-900); box-shadow: 0 10px 25px rgba(5, 63, 98, .22); }
.button-green { color: #073b22; background: var(--green); box-shadow: 0 14px 32px rgba(35, 209, 96, .24); }
.button-green:hover { color: white; background: var(--green-dark); }
.button-outline-light { color: white; background: transparent; border-color: rgba(255,255,255,.72); }
.button-outline-light:hover { background: rgba(255,255,255,.1); }
.button-navy { color: white; background: var(--navy-900); }
.whatsapp-symbol { font-size: 1.25rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 11px; color: #0774a0; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #b8dced; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(125deg, #073454 0%, #073f62 52%, #075f80 100%);
}
.hero-decoration { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-decoration-one { width: 320px; height: 320px; top: -145px; left: 41%; background: rgba(94, 162, 204, .12); }
.hero-decoration-two { width: 430px; height: 430px; right: -170px; bottom: -250px; border: 70px solid rgba(255,255,255,.045); }
.hero-grid { position: relative; z-index: 1; min-height: 700px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: 54px; padding-block: 50px; }
.hero-copy { max-width: 560px; }
.hero h1 { margin: 18px 0 0; font-size: clamp(2.65rem, 4.45vw, 4.55rem); line-height: 1.03; letter-spacing: -.052em; }
.hero h1 span { color: #86c3e6; }
.hero-text { max-width: 570px; margin: 24px 0 0; color: #d8e9f1; font-size: 1.06rem; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-benefits { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.hero-benefits > div { min-width: 0; display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 9px; align-items: center; }
.benefit-icon { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #bce7f8; }
.hero-benefits strong { font-size: .82rem; }
.hero-benefits small { color: #bdd2de; font-size: .69rem; line-height: 1.3; }

.carousel-card { overflow: hidden; background: white; border: 1px solid rgba(255,255,255,.55); border-radius: 28px; box-shadow: var(--shadow-lg); }
.carousel-viewport { position: relative; aspect-ratio: 1.34 / 1; background: #eaf4fa; }
.carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .45s ease; pointer-events: none; }
.carousel-slide.is-active { opacity: 1; pointer-events: auto; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.carousel-arrow { position: absolute; top: 50%; z-index: 3; width: 50px; height: 50px; display: grid; place-items: center; transform: translateY(-50%); border: 0; border-radius: 50%; color: var(--navy-900); background: rgba(255,255,255,.94); box-shadow: 0 12px 28px rgba(0, 36, 59, .18); cursor: pointer; font-size: 2.15rem; line-height: 1; }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-info { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 24px 12px; color: var(--ink); }
.carousel-caption { display: flex; align-items: center; gap: 14px; }
.caption-icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--navy-900); border-radius: 50%; font-size: 1.2rem; }
.carousel-caption div { display: grid; }
.carousel-caption strong { color: var(--navy-900); }
.carousel-caption small { color: var(--muted); }
.carousel-count { color: #456275; font-weight: 700; white-space: nowrap; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; padding: 4px 18px 22px; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #c5d4df; cursor: pointer; }
.carousel-dot.is-active { background: var(--navy-900); transform: scale(1.18); }

.clients-section { padding: 62px 0 74px; background: linear-gradient(#fff, #f6fafc); }
.section-title h2 { margin: 10px 0 0; color: var(--navy-900); font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.08; letter-spacing: -.04em; }
.section-title p { margin: 12px 0 0; color: var(--muted); }
.centered { max-width: 780px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.thumbnail-row { margin-top: 34px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); gap: 12px; overflow-x: auto; padding: 4px 4px 16px; scrollbar-width: thin; }
.thumbnail { overflow: hidden; aspect-ratio: 1.15 / 1; padding: 0; border: 3px solid transparent; border-radius: 17px; background: white; box-shadow: 0 10px 25px rgba(5,63,98,.08); cursor: pointer; }
.thumbnail.is-active { border-color: #66a9d2; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.cromos-section { padding: 88px 0; background: white; }
.cromos-grid { display: grid; grid-template-columns: minmax(380px, 520px) minmax(0, 1fr); align-items: center; gap: 64px; }
.cromos-visual { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--blue-100); box-shadow: var(--shadow-md); }
.cromos-visual img { width: 100%; height: auto; object-fit: contain; }
.visual-badge { position: absolute; right: 18px; bottom: 18px; padding: 9px 14px; color: #073b22; background: var(--green); border-radius: 999px; font-size: .76rem; font-weight: 800; }
.cromos-copy h2 { margin: 14px 0 0; color: var(--navy-900); font-size: clamp(2.15rem, 3.7vw, 3.7rem); line-height: 1.08; letter-spacing: -.045em; }
.cromos-copy > p { margin: 20px 0 0; color: var(--muted); }
.spec-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.spec-grid > div { min-height: 98px; padding: 15px 12px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 15px; background: var(--blue-50); }
.spec-grid strong { color: #0b75a0; font-size: 1.22rem; }
.spec-grid span { margin-top: 4px; color: var(--muted); font-size: .66rem; line-height: 1.35; }
.check-list { margin: 25px 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; list-style: none; }
.check-list li { position: relative; padding-left: 21px; color: #3f5c6e; font-size: .85rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }

.resources-section { padding: 88px 0; background: var(--blue-50); }
.split-title { display: grid; grid-template-columns: 1.05fr .75fr; align-items: end; gap: 52px; }
.split-title p { margin: 0; color: var(--muted); }
.resource-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.resource-card { overflow: hidden; display: flex; flex-direction: column; min-width: 0; background: white; border: 1px solid var(--line); border-radius: 23px; box-shadow: 0 15px 40px rgba(5,63,98,.08); }
.resource-image { aspect-ratio: 1 / 1; padding: 16px; display: grid; place-items: center; background: linear-gradient(180deg, #f7fbfd, #eaf4f9); }
.resource-image img { width: 100%; height: 100%; object-fit: contain; }
.resource-content { flex: 1; padding: 23px 24px 27px; }
.resource-content > span { display: inline-flex; padding: 5px 10px; color: #08769f; background: #e9f5fb; border-radius: 999px; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-content h3 { margin: 13px 0 8px; color: var(--navy-900); font-size: 1.45rem; }
.resource-content p { margin: 0; color: var(--muted); }

.process-section { padding: 90px 0; color: white; background: var(--navy-950); }
.process-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 90px; }
.process-copy h2 { margin: 14px 0 0; font-size: clamp(2.2rem, 3.8vw, 3.55rem); line-height: 1.08; }
.process-copy p { max-width: 520px; color: #c0d4df; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { min-height: 112px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.steps li > span { width: 50px; height: 50px; display: grid; place-items: center; color: #c0efd2; background: rgba(35,209,96,.1); border: 1px solid rgba(35,209,96,.25); border-radius: 50%; font-weight: 800; }
.steps strong { font-size: 1.02rem; }
.steps p { margin: 4px 0 0; color: #adc1cc; font-size: .88rem; }

.faq-section { padding: 88px 0; }
.faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 80px; }
.faq-intro h2 { margin: 14px 0 0; color: var(--navy-900); font-size: clamp(2.1rem, 3.6vw, 3.4rem); line-height: 1.08; }
.faq-intro p { color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 20px 0; cursor: pointer; color: var(--navy-900); font-weight: 800; }
.faq-list p { margin: -4px 0 20px; color: var(--muted); }

.final-cta { padding: 0 0 88px; }
.final-cta-card { padding: 42px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); border-radius: 28px; box-shadow: var(--shadow-lg); }
.final-cta-card h2 { margin: 10px 0 0; font-size: clamp(2rem, 3.2vw, 3rem); }
.final-cta-card p { margin: 9px 0 0; color: #c6dbe5; }

.site-footer { padding: 34px 0; color: #c7d9e2; background: #032a43; }
.footer-row { display: flex; align-items: center; gap: 25px; }
.footer-row img { width: 95px; height: auto; object-fit: contain; }
.footer-row div { display: grid; }
.footer-row strong { color: white; }
.footer-row a { margin-left: auto; color: white; font-weight: 750; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  min-width: 64px;
  height: 64px;
  padding: 0 20px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #19b957 100%);
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(9, 94, 44, .34), 0 4px 12px rgba(0,0,0,.14);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: -.01em;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, .36);
  border-radius: inherit;
  opacity: 0;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.015);
  background: linear-gradient(135deg, #2bdb6c 0%, #149f49 100%);
  box-shadow: 0 20px 46px rgba(9, 94, 44, .4), 0 6px 16px rgba(0,0,0,.16);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(.99);
}

.whatsapp-float:focus-visible {
  outline: 4px solid rgba(102, 169, 210, .45);
  outline-offset: 4px;
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}

.whatsapp-float-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.whatsapp-float-label {
  white-space: nowrap;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(.96); opacity: .7; }
  70%, 100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .82rem; }
  .hero-grid { grid-template-columns: minmax(0, .8fr) minmax(470px, 1.1fr); gap: 36px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .cromos-grid { grid-template-columns: minmax(340px, 450px) 1fr; gap: 42px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-row { min-height: 72px; flex-wrap: wrap; }
  .brand img { width: 170px; }
  .menu-button { display: block; }
  .main-nav { order: 4; width: 100%; display: none; margin: 0; padding: 10px 0 18px; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .button-header { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 52px 60px; }
  .hero-copy { max-width: none; }
  .hero-benefits { grid-template-columns: repeat(3, 1fr); }
  .carousel-card { width: min(100%, 680px); margin-inline: auto; }
  .cromos-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .cromos-visual { width: min(100%, 560px); margin-inline: auto; }
  .split-title { grid-template-columns: 1fr; gap: 18px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { display: grid; grid-template-columns: minmax(220px, .8fr) 1fr; }
  .resource-image { aspect-ratio: 1 / 1; }
  .final-cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-benefits { grid-template-columns: 1fr; }
  .carousel-viewport { aspect-ratio: 1 / 1; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.8rem; }
  .carousel-prev { left: 9px; }
  .carousel-next { right: 9px; }
  .carousel-info { align-items: flex-start; padding: 15px 16px 10px; }
  .caption-icon { width: 40px; height: 40px; }
  .carousel-caption strong { font-size: .9rem; }
  .carousel-caption small { font-size: .72rem; }
  .thumbnail-row { grid-auto-columns: 130px; }
  .cromos-section, .resources-section, .process-section, .faq-section { padding-block: 64px; }
  .spec-grid, .check-list { grid-template-columns: 1fr; }
  .resource-card { display: flex; }
  .resource-image { aspect-ratio: 1 / 1; }
  .final-cta-card { padding: 30px 24px; }
  .footer-row { align-items: flex-start; flex-wrap: wrap; }
  .footer-row a { width: 100%; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Ajuste final do topo para manter a composição aprovada */
@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(520px, 1.02fr);
    gap: 44px;
  }

  .hero-copy {
    max-width: 590px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 4.1vw, 4.1rem);
  }

  .carousel-viewport {
    aspect-ratio: 1.25 / 1;
  }

  .carousel-slide img {
    object-position: center 38%;
  }
}


/* Destaques do carrossel */
.thumbnail.is-featured {
  position: relative;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, .28);
}

.thumbnail.is-featured::after {
  content: "Destaque";
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(6, 78, 59, .92);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.16);
}


@media (max-width: 620px) {
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    border-width: 3px;
  }

  .whatsapp-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .whatsapp-float-icon {
    width: 100%;
    height: 100%;
    background: transparent;
  }

  .whatsapp-float-icon svg {
    width: 29px;
    height: 29px;
  }
}
