/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

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

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

button {
  cursor: pointer;
}

/* Variables */
:root {
  --primary-blue: #084da3;
  --footer-blue: #0d3869;
  --white: #ffffff;
  --dark-blue: #021122;
  --soft-bg: #f5f9ff;
  --ink: #143453;
  --line: rgba(8, 77, 163, .16);
  --blue-gradient: linear-gradient(135deg, #084da3 0%, #064485 58%, #0d3869 100%);
  --container-width: 1180px;
  --font-main: Helvetica, Arial, sans-serif;
  --font-display: "Barlow", Arial, sans-serif;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-main);
}

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

.eyebrow {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid transparent;
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(8, 77, 163, .26);
}

.button-secondary {
  border: 1.5px solid rgba(8, 77, 163, .55);
  background: rgba(255, 255, 255, .92);
  color: var(--primary-blue);
}

.button-outline {
  border: 1.5px solid rgba(255, 255, 255, .78);
  color: var(--white);
}

.button-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .78);
  color: var(--white);
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  height: 76px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(8, 77, 163, .08);
  box-shadow: 0 8px 22px rgba(13, 56, 105, .06);
}

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

.brand {
  width: 150px;
}

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

.main-nav a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  content: "";
  transition: width .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--primary-blue);
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.conversion-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--dark-blue);
}

.conversion-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 17, 34, .92) 0%, rgba(2, 17, 34, .7) 36%, rgba(2, 17, 34, .18) 72%, rgba(2, 17, 34, .04) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 76px);
  align-items: center;
  padding: 78px 0 150px;
}

.hero-panel {
  position: relative;
  max-width: 800px;
  padding: 0 0 0 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel::before {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: var(--primary-blue);
  content: "";
}

.hero-panel .eyebrow {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  box-shadow: none;
}

.conversion-hero .hero-panel h1 {
  max-width: 760px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.6px;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.hero-panel > p:not(.eyebrow) {
  max-width: 575px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  width: fit-content;
}

.hero-actions .button {
  border-radius: 6px;
}

.proof-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: visible;
  border-radius: 0;
  width: 100%;
  padding: 26px max(24px, calc((100vw - var(--container-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(2, 17, 34, .72) 0%, rgba(2, 17, 34, .4) 48%, rgba(2, 17, 34, .16) 100%);
  box-shadow: none;
  backdrop-filter: blur(2px);
}

.proof-grid article {
  position: relative;
  min-height: auto;
  padding: 0 28px;
  overflow: visible;
  border-right: 1px solid rgba(255, 255, 255, .32);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-grid article::before {
  display: none;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--white);
  font-size: 17px;
}

.proof-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  text-transform: uppercase;
}

/* Segments */
.segments-section {
  position: relative;
  padding: 42px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(8, 77, 163, .08), rgba(8, 77, 163, 0) 28%),
    radial-gradient(circle at 92% 42%, rgba(8, 77, 163, .08), rgba(8, 77, 163, 0) 30%),
    linear-gradient(180deg, var(--white) 0%, var(--soft-bg) 100%);
}

.segments-section .section-head {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.segments-section .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.segments-section .section-head .eyebrow::before,
.segments-section .section-head .eyebrow::after {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--primary-blue);
  content: "";
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.benefits-layout h2,
.mid-cta h2,
.about-compact h2,
.contact-copy h2 {
  margin-top: 10px;
  color: var(--primary-blue);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
  color: #4b6884;
  font-size: 16px;
  line-height: 1.45;
}

.segments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.segment-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 77, 163, .18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(13, 56, 105, .1);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.segment-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.segment-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 30px 56px rgba(13, 56, 105, .18);
  transform: translateY(-6px);
}

.segment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.segment-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.segment-card div {
  position: relative;
  min-height: 112px;
  padding: 16px 16px 17px;
  background: linear-gradient(180deg, var(--white) 0%, #fbfdff 100%);
}

.segment-card div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 0;
  background: var(--blue-gradient);
  content: "";
}

.segment-card h3 {
  min-height: 34px;
  color: var(--primary-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.segment-card a {
  display: inline-flex;
  position: absolute;
  right: 16px;
  bottom: 16px;
  margin-top: 13px;
  padding: 8px 13px 7px;
  border-radius: 6px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}

.segment-card a:hover,
.segment-card a:focus-visible {
  background: #0d3869;
  transform: translateY(-1px);
}

@media (min-width: 821px) {
  .segments-grid {
    gap: 32px 24px;
  }

  .segments-section .segment-card img {
    height: clamp(156px, 10.2vw, 184px) !important;
    aspect-ratio: auto !important;
  }

  .segments-section .segment-card div {
    min-height: 116px;
    padding: 17px 18px 18px;
  }

  .segments-section .segment-card h3 {
    min-height: 34px;
    font-size: 15px;
  }

  .segments-section .segment-card a {
    right: 18px;
    bottom: 18px;
  }
}

/* Benefits */
.benefits-section {
  position: relative;
  padding: 88px 0 108px;
  overflow: hidden;
  background: linear-gradient(135deg, #084da3 0%, #064889 50%, #0d3869 100%);
  color: var(--white);
}

.benefits-section::before {
  position: absolute;
  top: -190px;
  left: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 66%);
  content: "";
}

.benefits-section::after {
  position: absolute;
  right: -240px;
  bottom: -290px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0) 70%);
  content: "";
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}

.benefits-layout .eyebrow,
.benefits-layout h2 {
  color: var(--white);
}

.benefits-layout .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.benefits-layout h2 {
  max-width: 1160px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.04;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

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

.benefits-grid article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 10px;
  background: #0d3869;
  box-shadow: 0 26px 48px rgba(1, 14, 29, .34), 0 10px 20px rgba(1, 14, 29, .24);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.benefits-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 32%, rgba(0, 0, 0, .84) 100%);
  content: "";
}

.benefits-grid article:hover {
  border-color: rgba(255, 255, 255, .78);
  box-shadow: 0 34px 58px rgba(1, 14, 29, .42), 0 12px 24px rgba(1, 14, 29, .28);
  transform: translateY(-6px);
}

.benefits-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.benefits-grid article:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.benefits-grid div {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.benefits-grid span {
  display: block;
  font-size: 72px;
  font-weight: 700;
  line-height: .74;
}

.benefits-grid h3 {
  max-width: 245px;
  margin-top: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

/* CTA */
.mid-cta {
  padding: 58px 0 46px;
  background: var(--soft-bg);
}

.mid-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  transform: none;
  padding: 38px 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(8, 77, 163, .96) 0%, rgba(6, 68, 133, .96) 56%, rgba(13, 56, 105, .98) 100%);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(8, 77, 163, .24);
}

.mid-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.mid-cta-box::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 70%);
  content: "";
  pointer-events: none;
}

.mid-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .98;
  letter-spacing: .01em;
  text-wrap: balance;
}

.mid-cta h2 span {
  display: block;
}

.mid-cta p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-top: 18px;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 255, 255, .5);
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.45;
}

.mid-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mid-cta .button-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: none;
}

.mid-cta .button-primary:hover {
  background: #eef5ff;
  transform: translateY(-2px);
}

.mid-cta .button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

.mid-cta .button-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Products */
.products-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 18% 8%, rgba(8, 77, 163, .1), rgba(8, 77, 163, 0) 28%),
    radial-gradient(circle at 84% 16%, rgba(13, 56, 105, .08), rgba(13, 56, 105, 0) 30%),
    linear-gradient(180deg, #f5f9ff 0%, #eef5fc 100%);
}

.products-section::before {
  position: absolute;
  top: 120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(8, 77, 163, .12);
  border-radius: 50%;
  content: "";
}

.products-section .section-head {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.products-section .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.products-section .section-head .eyebrow::before,
.products-section .section-head .eyebrow::after {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--primary-blue);
  content: "";
}

.products-section .section-head h2 {
  max-width: 960px;
  margin-inline: auto;
}

.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(8, 77, 163, .22);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(13, 56, 105, .1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card::before {
  position: absolute;
  inset: 0 0 42px;
  background:
    radial-gradient(circle at 50% 45%, rgba(8, 77, 163, .08), rgba(8, 77, 163, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 251, 255, .8));
  content: "";
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(8, 77, 163, .42);
  box-shadow: 0 24px 52px rgba(13, 56, 105, .16);
  transform: translateY(-6px);
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  min-height: 236px;
  padding: 26px 24px 20px;
  object-fit: contain;
  transition: transform .25s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 12px 10px;
  background: var(--blue-gradient);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.products-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.products-action .button {
  min-width: 230px;
  border-color: rgba(8, 77, 163, .45);
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 14px 32px rgba(13, 56, 105, .08);
}

.products-action .button:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* About */
.about-compact {
  position: relative;
  min-height: 675px;
  padding: 98px 0 90px;
  overflow: hidden;
  background: url("assets/img/home-about-bg.webp") center right / cover no-repeat;
  color: var(--white);
}

.about-compact::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .66) 35%, rgba(0, 0, 0, .14) 58%, rgba(0, 0, 0, 0) 78%);
  content: "";
  pointer-events: none;
}

.about-image {
  display: none;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 0 0 2px;
}

.about-content h2 {
  color: var(--white);
}

.about-content h2 {
  max-width: none;
  margin-top: 0;
  font-size: 35px;
  line-height: 1;
  text-shadow: none;
}

.section-kicker {
  margin-top: 72px;
  color: rgba(255, 255, 255, .72);
  font-size: 19px;
  text-transform: uppercase;
}

.about-copy {
  max-width: 555px;
  margin-top: 24px;
}

.about-copy p {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.35;
}

.about-numbers {
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.about-button {
  margin-top: 29px;
}

.about-button:hover,
.about-button:focus-visible {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Contact */
.contact-section {
  padding: 92px 0 0;
  background: linear-gradient(105deg, #f7fbff 0%, #f7fbff 56%, #0a4b98 56%, #0d3869 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 58px;
  padding-bottom: 92px;
}

.contact-copy {
  max-width: 440px;
  padding-top: 22px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: #4b6884;
  font-size: 16px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(13, 56, 105, .18);
}

.lead-form label {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 40px;
  margin-top: -6px;
  padding: 8px 11px;
  border: 1.5px solid rgba(8, 77, 163, .35);
  border-radius: 8px;
  background: var(--white);
  color: #1d1d1d;
}

.lead-form textarea,
.lead-form button,
.lead-form label[for="mensagem"] {
  grid-column: 1 / -1;
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(8, 77, 163, .12);
}

.lead-form button {
  justify-self: start;
  margin-top: 6px;
  border: 0;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 30;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: #31c968;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  transition: transform .2s ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  transform: scale(1.06);
}

.whatsapp svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

/* Footer */
.site-footer {
  min-height: 379px;
  padding: 68px 0 45px;
  background: linear-gradient(135deg, #0d3869 0%, #082f5d 62%, #06264d 100%);
  color: rgba(255, 255, 255, .54);
}

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

.contact-column {
  max-width: 350px;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.footer-column p,
.footer-column li {
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 1.35;
}

.footer-column a {
  transition: color .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 7px;
}

.social-links a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, .52);
  color: var(--footer-blue);
  font-size: 17px;
  font-weight: 700;
}

.footer-notice {
  margin-top: 73px;
}

.footer-notice p {
  font-size: 10px;
  font-style: italic;
  line-height: 1.45;
}

.footer-notice strong {
  font-style: normal;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 11px;
  }

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

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

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mid-cta-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container-width));
  }

  .site-header {
    height: 72px;
  }

  .brand {
    width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--white);
    box-shadow: 0 8px 16px rgba(8, 77, 163, .12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(8, 77, 163, .12);
    font-size: 12px;
  }

  .conversion-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    align-items: flex-start;
    padding-top: 36px !important;
    padding-bottom: 16px !important;
  }

  .hero-panel {
    padding-left: 24px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-panel .eyebrow {
    white-space: nowrap !important;
  }

  .hero-actions {
    width: 100%;
    max-width: 430px;
    padding: 0;
    border-radius: 0;
    margin-top: 18px !important;
  }

  .hero-actions,
  .mid-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mid-cta {
    padding: 46px 0 36px;
    background: #f5f9ff;
  }

  .proof-grid,
  .segments-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .container.proof-grid {
    position: relative;
    bottom: auto;
    left: auto !important;
    transform: none !important;
    z-index: 2;
    margin-top: 24px !important;
    padding: 20px 18px;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }

  .proof-grid article {
    padding: 0 18px;
  }

  .proof-grid article:nth-child(2n) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n+2) {
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .proof-grid article:nth-child(n+3) {
    padding-top: 13px;
  }

  .segments-section,
  .benefits-section,
  .products-section,
  .contact-section {
    padding-block: 64px;
  }

  .products-section {
    padding-top: 64px;
  }

  .about-compact {
    min-height: auto;
    padding: 64px 0;
    background-position: 65% center;
  }

  .about-content {
    padding: 0;
  }

  .about-copy {
    max-width: none;
  }

  .section-kicker {
    margin-top: 44px;
  }

  .contact-section {
    background: #f7fbff;
  }

  .contact-layout {
    padding-bottom: 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form label,
  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .lead-form button {
    grid-column: 1;
  }

  .whatsapp {
    right: 16px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-width: 4px;
  }

  .whatsapp svg {
    width: 32px;
    height: 32px;
  }

  /* Otimizacao dos cards de segmentos no mobile */
  .segment-card img {
    aspect-ratio: 16 / 12 !important;
  }

  .segment-card div {
    min-height: auto !important;
    padding: 12px 12px 60px !important;
  }

  .segment-card h3 {
    min-height: auto !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }

  .segment-card a {
    right: 12px !important;
    bottom: 12px !important;
    padding: 10px 18px 9px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 560px) {
  .proof-grid,
  .segments-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-layout {
    gap: 30px;
  }

  .benefits-layout h2 {
    max-width: 340px;
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: .98;
  }

  .benefits-grid article {
    min-height: 252px;
    border-radius: 9px;
  }

  .benefits-grid div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .benefits-grid span {
    font-size: 58px;
  }

  .benefits-grid h3 {
    max-width: 260px;
    font-size: 16px;
  }

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

  .proof-grid article {
    min-height: auto;
  }

  .conversion-hero .hero-panel h1 {
    font-size: 30px !important;
    margin-top: 14px !important;
  }

  .hero-panel > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 12px !important;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .hero-panel .eyebrow {
    font-size: 10px;
  }

  .lead-form {
    padding: 24px 20px;
  }
}
