/* Reset and base */
:root {
  --color-primary: #ed1c24;
  --color-primary-dark: #c90f18;
  --color-primary-soft: #fff5f5;
  --color-secondary: #1666b1;
  --color-dark: #171b20;
  --color-footer: #172531;
  --color-light: #ffffff;
  --color-muted: #666d74;
  --color-border: #e3e5e8;
  --shadow-soft: 0 10px 32px rgba(27, 35, 43, 0.08);
  --shadow-card: 0 8px 24px rgba(27, 35, 43, 0.06);
  --radius-lg: 14px;
  --radius-md: 9px;
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--color-dark);
  background: var(--color-light);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--color-dark);
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

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

.section {
  padding: 72px 0;
}

.section-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 3px;
  color: var(--color-dark);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading h2 strong {
  color: var(--color-primary);
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.97rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgba(237, 28, 36, 0.22);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 10px 24px rgba(237, 28, 36, 0.3);
}

.btn-outline {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  color: #fff;
  background: var(--color-primary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(225, 227, 230, 0.75);
  box-shadow: 0 4px 18px rgba(29, 35, 40, 0.035);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 174px;
}

.brand img {
  width: 174px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #292e33;
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 19px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #30353a;
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-phone i {
  color: var(--color-dark);
}

.btn-header {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../img/hero-protecao.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: max(100%, 1672px) auto;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.99) 21%, rgba(255, 255, 255, 0.82) 39%, rgba(255, 255, 255, 0) 57%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 50.5%;
  bottom: 38px;
  width: 175px;
  height: 128px;
  opacity: 0.26;
  background-image: radial-gradient(circle, #aab0b6 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 530px;
  align-items: center;
}

.hero-copy {
  width: 49%;
  max-width: 560px;
  padding: 42px 0 58px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 750;
  line-height: 1.07;
  letter-spacing: -0.052em;
}

.hero h1 strong {
  color: var(--color-primary);
  font-weight: inherit;
}

.hero-copy > p {
  max-width: 485px;
  margin: 0 0 28px;
  color: #5f666d;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -19px;
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 15px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--color-border);
}

.trust-item > i {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 2rem;
}

.trust-item p {
  margin: 0;
  color: #747b81;
  font-size: 0.82rem;
  line-height: 1.25;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: #2c3136;
  font-size: 0.97rem;
}

/* Services */
.services {
  padding-top: 66px;
  background-image: radial-gradient(circle at 10% 12%, rgba(237, 28, 36, 0.03), transparent 24%);
}

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

.service-card {
  display: grid;
  min-height: 178px;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(30, 35, 40, 0.025);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(237, 28, 36, 0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border: 1px solid rgba(237, 28, 36, 0.15);
  border-radius: 12px;
  font-size: 2.35rem;
}

.service-card h3 {
  margin: 4px 0 5px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.service-card p {
  min-height: 43px;
  margin: 0 0 13px;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-card a,
.audience-details > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card a i,
.audience-details > a i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.service-card a:hover i,
.audience-details > a:hover i {
  transform: translateX(4px);
}

/* Audience split */
.audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.audience {
  padding: 48px max(28px, calc((100vw - var(--container)) / 2));
}

.audience-person {
  padding-right: 46px;
  background: linear-gradient(130deg, #fff 35%, #fff8f8 100%);
}

.audience-business {
  padding-left: 46px;
  background: linear-gradient(130deg, #fff 20%, #f5faff 100%);
  border-left: 1px solid #e9eaec;
}

.audience-content {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px 30px;
  align-items: center;
}

.audience-heading {
  grid-column: 1 / -1;
}

.audience-heading h2 {
  margin: 0 0 3px;
  color: var(--color-primary);
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.audience-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.audience-content > img {
  width: 190px;
  height: 190px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(28, 39, 48, 0.12);
}

.audience-details ul {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.audience-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #4f565d;
  font-size: 0.82rem;
}

.audience-details li i {
  color: var(--color-primary);
  font-size: 0.88rem;
}

/* Process */
.process {
  padding-bottom: 58px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 12px 20px 0;
  text-align: center;
}

.step-number {
  display: grid;
  width: 39px;
  height: 39px;
  margin: 0 auto 10px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(237, 28, 36, 0.22);
  font-weight: 700;
}

.process-step > i {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 2.55rem;
}

.process-step h3 {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.2;
}

.process-step p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.77rem;
}

.process-arrow {
  color: #c6c9cc;
  font-size: 1.55rem;
}

/* Why us */
.why-us {
  position: relative;
  padding-top: 56px;
  border-top: 1px solid #eceef0;
}

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

.benefit-item {
  padding: 0 30px;
  text-align: center;
}

.benefit-item + .benefit-item {
  border-left: 1px solid var(--color-border);
}

.benefit-item > i {
  margin-bottom: 13px;
  color: var(--color-primary);
  font-size: 2.3rem;
}

.benefit-item h3 {
  margin: 0 0 8px;
  font-size: 0.93rem;
}

.benefit-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
}

/* Partners */
.partners {
  padding: 34px 0 42px;
  border-top: 1px solid #eceef0;
}

.partners .section-heading {
  margin-bottom: 24px;
}

.partners .section-heading h2 {
  font-size: 1.55rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
  align-items: center;
}

.partner {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.partner small {
  align-self: flex-end;
  margin-bottom: 5px;
  font-size: 0.55rem;
  letter-spacing: 0;
}

.partner-porto { color: #1973df; }
.partner-bradesco { color: #d91535; }
.partner-sulamerica { color: #174f91; }
.partner-itau {
  width: 45px;
  min-height: 45px;
  justify-self: center;
  color: #ffdd00;
  background: #14479a;
  border-radius: 5px;
  font-size: 0.95rem;
}
.partner-amil { color: #6231d5; font-size: 1.8rem; }
.partner-mapfre { color: #ca2027; font-size: 1rem; }
.partner-zurich { color: #1b58a7; font-size: 1rem; }

/* FAQ */
.faq {
  padding: 30px 0 34px;
  background: #f7f8fa;
  border-top: 1px solid #edf0f2;
}

.faq-container {
  max-width: 1040px;
}

.faq .section-heading {
  margin-bottom: 18px;
}

.faq .section-heading h2 {
  font-size: 1.45rem;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7e9;
  border-radius: 7px;
  box-shadow: 0 3px 12px rgba(25, 35, 44, 0.04);
}

.faq summary {
  position: relative;
  padding: 13px 52px 13px 22px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--color-primary);
  content: "+";
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 22px 16px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  color: #fff;
  background: linear-gradient(112deg, #df141c 0%, #f01d25 52%, #cb0d16 100%);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 170px;
  height: 170px;
  top: -44px;
  left: 3%;
}

.final-cta::after {
  width: 70px;
  height: 70px;
  top: 9px;
  left: 7%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.87rem;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.btn-light {
  color: var(--color-primary);
  background: #fff;
  border-color: #fff;
}

.btn-light:hover {
  box-shadow: 0 9px 22px rgba(79, 4, 8, 0.2);
}

.btn-ghost {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn-ghost:hover {
  color: var(--color-primary);
  background: #fff;
}

/* Footer */
.site-footer {
  padding: 44px 0 0;
  color: rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle at 12% 20%, #223846 0%, var(--color-footer) 38%, #13202a 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.95fr 1.25fr;
  gap: 60px;
  padding-bottom: 35px;
}

.footer-logo {
  display: block;
  width: 196px;
  margin-bottom: 15px;
  padding: 4px 7px;
  background: #fff;
  border-radius: 3px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-about > p {
  max-width: 280px;
  margin: 0 0 17px;
  font-size: 0.78rem;
  line-height: 1.65;
}

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

.social-links a {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  font-size: 0.77rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-grid h2 {
  margin: 4px 0 14px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  margin: 0 0 7px;
  font-size: 0.77rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  width: 15px;
  margin-top: 3px;
  color: #fff;
  text-align: center;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.footer-bottom a:hover {
  color: #fff;
}

.developer-credit a {
  color: #fff;
  font-weight: 700;
}

/* Responsiveness */
@media (max-width: 1160px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    gap: 20px;
  }

  .brand,
  .brand img {
    width: 153px;
    flex-basis: 153px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .header-phone span {
    display: none;
  }

  .hero {
    min-height: 500px;
    background-size: 1500px auto;
    background-position: left center;
  }

  .hero-inner {
    min-height: 500px;
  }

  .audience {
    padding-inline: 30px;
  }

  .audience-content {
    grid-template-columns: 160px 1fr;
    gap: 22px;
  }

  .audience-content > img {
    width: 160px;
    height: 160px;
  }

  .partner-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 58px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    margin: 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 18px 30px rgba(24, 30, 35, 0.12);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .main-nav.open {
    max-height: calc(100vh - var(--header-height));
    opacity: 1;
  }

  .main-nav a {
    padding: 15px 24px;
    border-bottom: 1px solid #f0f1f2;
    font-size: 0.95rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 670px;
    background-position: 57% bottom;
    background-size: 1190px auto;
  }

  .hero::before {
    background: linear-gradient(180deg, #fff 0%, #fff 43%, rgba(255, 255, 255, 0.92) 53%, rgba(255, 255, 255, 0) 74%);
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    min-height: 670px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: 580px;
    padding: 54px 0 0;
  }

  .hero-copy > p {
    max-width: 540px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-card {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }

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

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

  .audience-business {
    border-top: 1px solid #e9eaec;
    border-left: 0;
  }

  .audience-content {
    max-width: 590px;
    margin: 0 auto;
    grid-template-columns: 180px 1fr;
  }

  .audience-content > img {
    width: 180px;
    height: 180px;
  }

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

  .benefit-item:nth-child(3) {
    border-left: 0;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0;
  }

  .footer-bottom .developer-credit {
    text-align: right;
  }

  .footer-bottom > div {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 50px 0;
  }

  .brand,
  .brand img {
    width: 148px;
    flex-basis: 148px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 735px;
    background-position: 60% bottom;
    background-size: 1010px auto;
  }

  .hero-inner {
    min-height: 735px;
  }

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

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-copy > p {
    font-size: 0.94rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-card {
    grid-template-columns: 1fr;
    padding: 13px 24px;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 15px 5px;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: 58px 1fr;
    gap: 17px;
    padding: 23px 21px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.85rem;
  }

  .service-card p {
    min-height: 0;
  }

  .audience {
    padding: 42px 22px;
  }

  .audience-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .audience-content > img {
    width: min(220px, 70vw);
    height: min(220px, 70vw);
    justify-self: center;
  }

  .audience-details {
    text-align: left;
  }

  .audience-details > a {
    margin-left: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: auto;
    padding: 4px 20px 28px;
  }

  .process-step p {
    max-width: 280px;
  }

  .process-arrow {
    margin: -7px auto 19px;
    transform: rotate(90deg);
  }

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

  .benefit-item {
    padding: 26px 22px;
  }

  .benefit-item + .benefit-item,
  .benefit-item:nth-child(3) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .partner:last-child {
    grid-column: 1 / -1;
  }

  .faq summary {
    padding-left: 17px;
    font-size: 0.8rem;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }

  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
    text-align: center;
  }

  .footer-bottom .developer-credit {
    text-align: center;
  }

  .footer-bottom > div {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Expanded site architecture */
.section-soft {
  background: #f7f8fa;
}

.section-heading-left {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

.narrow-container {
  max-width: 940px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary);
  font-weight: 700;
}

.text-link i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* Needs selector */
.needs {
  padding-top: 78px;
}

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

.needs-grid a {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 17px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(26, 34, 41, 0.035);
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.needs-grid a:hover {
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.needs-grid i {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 11px;
  font-size: 1.45rem;
}

/* Business and feature sections */
.business-showcase {
  color: #fff;
  background: radial-gradient(circle at 85% 15%, #28475d 0%, #1b3141 32%, #142633 78%);
}

.business-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.business-copy h2,
.feature-copy h2,
.feature-band h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.business-copy p,
.feature-copy > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.75);
}

.business-solutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.business-solutions a {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.business-solutions a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.business-solutions i {
  color: #ff5258;
  font-size: 1.5rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.feature-visual {
  display: grid;
  min-height: 400px;
  place-items: center;
  background: linear-gradient(145deg, #fff2f2, #f1f7fc);
  border-radius: 28px 90px 28px 90px;
}

.feature-icon-large {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #f42a32, #c90f18);
  border-radius: 50%;
  box-shadow: 0 25px 55px rgba(237, 28, 36, 0.22);
  font-size: 4.5rem;
}

.feature-copy h2 {
  color: var(--color-dark);
}

.feature-copy > p {
  color: var(--color-muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.check-grid li,
.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-grid li::before,
.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--color-primary);
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.process-grid-four {
  grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  max-width: 1180px;
}

.process-grid-four .process-step {
  padding-inline: 10px;
}

.benefits-grid-six {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 0;
}

.benefits-grid-six .benefit-item:nth-child(4) {
  border-left: 0;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.finance-grid a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 21px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.finance-grid a:hover {
  border-color: rgba(237, 28, 36, 0.3);
  transform: translateY(-3px);
}

.finance-grid i {
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 2rem;
}

.finance-grid strong {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.finance-grid span {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.partner-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.partner-categories span,
.tag-cloud span {
  padding: 10px 16px;
  color: #4b535a;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
}

.partners-preview .section-action {
  margin-top: 25px;
}

/* Internal pages */
.internal-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(110deg, #fff 0%, #fff5f5 62%, #eef6fc 100%);
  border-bottom: 1px solid var(--color-border);
}

.internal-hero::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.14), transparent 66%);
  border-radius: 50%;
  content: "";
}

.internal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.internal-hero h1,
.product-hero h1,
.form-page-head h1,
.legal-head h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.internal-hero p {
  max-width: 670px;
  margin: 0 0 28px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.internal-hero-business,
.internal-hero-finance {
  color: #fff;
  background: radial-gradient(circle at 80% 20%, #32516a, #162936 70%);
}

.internal-hero-business p,
.internal-hero-finance p {
  color: rgba(255, 255, 255, 0.75);
}

.internal-hero-health {
  background: linear-gradient(120deg, #fff 0%, #eef9f7 65%, #e8f4fd 100%);
}

.internal-hero-rent {
  background: linear-gradient(120deg, #fff 0%, #fff8ed 62%, #eef6fc 100%);
}

.feature-band {
  color: #fff;
  background: linear-gradient(110deg, #d8131b, #f02830);
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 65px;
  align-items: center;
}

.feature-band h2 {
  margin-bottom: 11px;
}

.feature-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.feature-band .check-list {
  margin: 0;
}

.feature-band .check-list li::before {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.risk-map .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.info-cards,
.solution-list-grid,
.partner-category-grid,
.values-grid {
  display: grid;
  gap: 20px;
}

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

.four-columns {
  grid-template-columns: repeat(4, 1fr);
}

.info-cards article,
.solution-list-grid article,
.partner-category-grid article,
.values-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 18px rgba(26, 34, 41, 0.045);
}

.info-cards article > i,
.solution-list-grid article > i,
.partner-category-grid article > i,
.values-grid article > i {
  margin-bottom: 17px;
  color: var(--color-primary);
  font-size: 2rem;
}

.info-cards h3,
.solution-list-grid h3,
.partner-category-grid h3,
.values-grid h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.info-cards p,
.solution-list-grid p,
.values-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.solution-list-grid {
  grid-template-columns: repeat(4, 1fr);
}

.partner-category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.partner-category-grid article {
  text-align: center;
}

.content-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.content-two-columns h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.content-two-columns p {
  color: var(--color-muted);
}

.align-center {
  align-items: center;
}

.content-card,
.statement-card {
  padding: 35px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.statement-card {
  font-size: 1.25rem;
  line-height: 1.6;
}

.statement-card i {
  color: var(--color-primary);
  font-size: 2.8rem;
}

.statement-card p {
  margin-bottom: 0;
}

/* Product page */
.product-hero {
  padding: 82px 0;
  background: linear-gradient(115deg, #fff 0%, #fff6f6 72%, #edf6fc 100%);
  border-bottom: 1px solid var(--color-border);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
}

.product-hero-grid > div:first-child {
  max-width: 760px;
}

.breadcrumb {
  display: block;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.breadcrumb i {
  margin-right: 7px;
}

.product-tagline {
  margin: -7px 0 17px;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-hero-grid > div:first-child > p:last-of-type {
  max-width: 670px;
  color: var(--color-muted);
}

.product-symbol {
  display: grid;
  width: min(320px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #f42b33, #c80e17);
  border-radius: 34% 66% 62% 38% / 39% 37% 63% 61%;
  box-shadow: 0 28px 65px rgba(237, 28, 36, 0.22);
  font-size: 6.5rem;
}

.small-note {
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
}

.card-number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
}

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

.timeline article {
  position: relative;
  padding: 28px 22px;
  text-align: center;
}

.timeline article:not(:last-child)::after {
  position: absolute;
  top: 45px;
  right: -18px;
  color: #c9cdd0;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.timeline span {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
}

.timeline h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

.timeline p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
}

.empty-state,
.success-page {
  min-height: 65vh;
  text-align: center;
}

.empty-state i {
  color: var(--color-primary);
  font-size: 4rem;
}

/* Forms */
.form-page-head,
.legal-head {
  padding: 72px 0 48px;
  text-align: center;
  background: #f7f8fa;
  border-bottom: 1px solid var(--color-border);
}

.form-page-head p,
.legal-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-muted);
}

.form-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 42px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #1d3444, #132430);
  border-radius: 14px;
}

.form-aside h2 {
  margin: 0 0 27px;
  font-size: 1.4rem;
}

.aside-steps {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-steps li {
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0.5;
}

.aside-steps li.active {
  opacity: 1;
}

.aside-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-weight: 700;
}

.aside-steps li.active > span {
  background: var(--color-primary);
}

.aside-steps strong,
.aside-steps small {
  display: block;
}

.aside-steps small {
  color: rgba(255, 255, 255, 0.7);
}

.privacy-callout {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.privacy-callout i {
  color: #66d2b1;
}

.privacy-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.form-card {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.form-step {
  display: block;
  margin: 0;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.js .form-step {
  display: none;
  padding: 0;
  border-bottom: 0;
}

.js .form-step.active {
  display: block;
}

.form-step legend {
  display: block;
  width: 100%;
  margin-bottom: 27px;
  font-size: 1.55rem;
  font-weight: 700;
}

.form-step legend span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-primary);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  gap: 20px;
}

.field-grid.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--color-dark);
  background: #fff;
  border: 1px solid #ccd1d5;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: var(--color-primary);
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.field-error {
  display: block;
  margin-top: 5px;
  color: var(--color-primary);
  font-size: 0.72rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.btn-back {
  color: var(--color-muted);
  background: #fff;
  border-color: var(--color-border);
  cursor: pointer;
}

.form-navigation .btn-primary,
.contact-form-card .btn-primary {
  cursor: pointer;
}

.form-review {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.review-item {
  padding: 14px;
  background: #f7f8fa;
  border-radius: 7px;
}

.review-item strong,
.review-item span {
  display: block;
}

.review-item strong {
  margin-bottom: 3px;
  color: var(--color-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.review-item span {
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.consent-field {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.consent-field a {
  color: var(--color-primary);
  text-decoration: underline;
}

.send-explanation {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  padding: 16px;
  color: #41515e;
  background: #eef6fc;
  border-radius: 8px;
}

.send-explanation i {
  color: var(--color-secondary);
}

.send-explanation p {
  margin: 0;
  font-size: 0.78rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 7px;
  font-size: 0.84rem;
}

.form-alert-error {
  color: #8f1116;
  background: #fff0f1;
  border: 1px solid #f3c7c9;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 13px;
}

.contact-options > a,
.contact-region {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 9px;
}

.contact-options i {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 50%;
  font-size: 1.25rem;
}

.contact-options strong,
.contact-options span {
  display: block;
}

.contact-options span {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.contact-form-card h2 {
  margin: 0 0 4px;
}

.contact-form-card > p {
  margin: 0 0 25px;
  color: var(--color-muted);
}

.contact-form-card .consent-field {
  margin: 22px 0;
}

.success-card {
  max-width: 700px;
  margin-inline: auto;
}

.success-icon {
  display: grid;
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  place-items: center;
  color: #fff;
  background: #20a96b;
  border-radius: 50%;
  font-size: 2rem;
}

.success-card h1 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.protocol {
  display: inline-block;
  margin: 5px 0 30px;
  padding: 9px 16px;
  background: #f1f2f3;
  border-radius: 6px;
  letter-spacing: 0.08em;
}

.whatsapp-next {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 22px;
  text-align: left;
  background: #eafaf2;
  border: 1px solid #bfe8d2;
  border-radius: 10px;
}

.whatsapp-next > i {
  color: #169c5f;
  font-size: 2.5rem;
}

.whatsapp-next h2,
.whatsapp-next p {
  margin: 0;
}

.whatsapp-next h2 {
  font-size: 1.05rem;
}

.whatsapp-next p {
  color: #4f6258;
  font-size: 0.8rem;
}

.btn-whatsapp {
  color: #fff;
  background: #169c5f;
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
}

.back-home {
  display: flex;
  width: max-content;
  margin: 20px auto 0;
}

/* Legal */
.legal-content article {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-content article:first-child {
  padding-top: 0;
}

.legal-content h2 {
  margin: 0 0 9px;
  font-size: 1.25rem;
}

.legal-content p {
  margin: 0;
  color: var(--color-muted);
}

.regulatory-note {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.regulatory-note p {
  max-width: 940px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  color: #fff;
  background: #149c5b;
  border-radius: 28px;
  box-shadow: 0 10px 25px rgba(13, 93, 54, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float i {
  font-size: 1.35rem;
}

@media (max-width: 1160px) {
  .header-inner {
    gap: 14px;
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

  .header-actions .btn-header {
    display: none;
  }

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

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

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

@media (max-width: 900px) {
  .main-nav a {
    padding: 18px 26px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .needs-grid,
  .solution-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-layout,
  .feature-layout,
  .product-hero-grid,
  .content-two-columns,
  .form-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 280px;
  }

  .process-grid-four {
    grid-template-columns: 1fr 20px 1fr;
    gap: 5px 0;
  }

  .process-grid-four .process-arrow:nth-of-type(2) {
    display: none;
  }

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

  .benefits-grid-six .benefit-item:nth-child(3),
  .benefits-grid-six .benefit-item:nth-child(5) {
    border-left: 0;
  }

  .benefits-grid-six .benefit-item:nth-child(4) {
    border-left: 1px solid var(--color-border);
  }

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

  .product-symbol {
    width: 230px;
    justify-self: center;
    font-size: 4.5rem;
  }

  .form-aside {
    position: static;
  }

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

  .privacy-callout {
    margin-top: 22px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 900px;
    background-color: #fff;
    background-image: none;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: block;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 410px;
    opacity: 1;
    background-image:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 13%, rgba(255, 255, 255, 0.32) 38%, rgba(255, 255, 255, 0) 62%),
      url("../img/hero-protecao.webp");
    background-repeat: no-repeat;
    background-position: center top, 59% bottom;
    background-size: 100% 100%, auto 410px;
    content: "";
  }

  .hero-inner {
    min-height: 900px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 38px 0 0;
  }

  .hero-copy > p {
    margin-bottom: 23px;
  }

  .hero-buttons {
    gap: 11px;
  }

  .main-nav a {
    padding: 19px 22px;
    font-size: 1.02rem;
  }

  .needs-grid,
  .business-solutions,
  .check-grid,
  .finance-grid,
  .three-columns,
  .four-columns,
  .solution-list-grid,
  .partner-category-grid,
  .values-grid,
  .field-grid.two-columns,
  .form-review {
    grid-template-columns: 1fr;
  }

  .needs-grid a {
    min-height: 82px;
  }

  .process-grid-four {
    grid-template-columns: 1fr;
  }

  .process-grid-four .process-arrow,
  .process-grid-four .process-arrow:nth-of-type(2) {
    display: block;
  }

  .benefits-grid-six {
    grid-template-columns: 1fr;
  }

  .benefits-grid-six .benefit-item,
  .benefits-grid-six .benefit-item:nth-child(4) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .internal-hero {
    padding: 68px 0;
  }

  .internal-hero h1,
  .product-hero h1,
  .form-page-head h1,
  .legal-head h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .feature-band-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .timeline article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -11px;
    transform: rotate(90deg) translateY(-50%);
  }

  .form-card,
  .form-aside {
    padding: 24px 20px;
  }

  .aside-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-navigation {
    flex-direction: column-reverse;
  }

  .form-navigation .btn,
  .contact-form-card .btn-primary {
    width: 100%;
  }

  .field-full {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }
}
