:root {
  --background: #f7faf8;
  --surface: #ffffff;
  --ink: #14212b;
  --muted: #667581;
  --line: #dbe5e1;
  --graphite: #24313a;
  --teal: #0f9f9a;
  --teal-dark: #0b7371;
  --cobalt: #1f6feb;
  --amber: #f6b85a;
  --radius: 24px;
  --shadow-card: 0 12px 32px rgb(20 33 43 / 8%);
  --shadow-soft: 0 20px 64px rgb(20 33 43 / 12%);
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 52%, #f5f8f7 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.focus-ring:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(15 159 154 / 32%);
  outline-offset: 3px;
}

.icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon [fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgb(219 229 225 / 70%);
  background: rgb(255 255 255 / 86%);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  max-width: calc(100% - 3.8rem);
  border-radius: 999px;
  font-weight: 750;
}

.brand span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
}

.brand-mark.light {
  background: #fff;
  color: var(--ink);
}

.menu-toggle {
  order: 4;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-links {
  order: 2;
  position: fixed;
  top: calc(var(--header-height) + .75rem);
  left: 1rem;
  right: 1rem;
  display: none;
  gap: .25rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.nav-links.open {
  display: grid;
}

.nav-links a {
  border-radius: 16px;
  padding: .85rem 1rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: var(--background);
  color: var(--ink);
}

.nav-cta {
  order: 3;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  box-shadow: 0 12px 24px rgb(15 159 154 / 24%);
}

.nav-cta .icon {
  width: 1rem;
  height: 1rem;
}

.nav-cta:hover,
.button-primary:hover,
.floating-whatsapp:hover {
  background: var(--teal-dark);
}

.hero {
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 48rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: .5rem;
  margin: 0 .5rem .75rem 0;
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
  box-shadow: 0 10px 30px rgb(20 33 43 / 6%);
}

.pill .icon {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}

.pill-accent {
  border-color: rgb(15 159 154 / 18%);
  background: rgb(15 159 154 / 10%);
  color: var(--teal-dark);
}

h1 {
  margin-top: 1rem;
  max-width: 48rem;
  color: var(--ink);
  font-size: 2.43rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 42rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3.5rem;
  padding: .85rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 30px rgb(15 159 154 / 24%);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 24px rgb(20 33 43 / 6%);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-dark {
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.button-dark:hover {
  background: var(--graphite);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .86;
  transform: none;
}

.button.is-submitting::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: spin .8s linear infinite;
}

.button.is-success {
  background: var(--teal-dark);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-points {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.hero-points .icon {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}

.hero-mockup {
  position: relative;
  isolation: isolate;
  width: min(100%, 34rem);
  margin-inline: auto;
}

.mockup-orb {
  display: none;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(219 229 225 / 80%);
  background: #fbfdfc;
}

.panel-header p {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.panel-header strong {
  display: block;
  margin-top: .25rem;
  color: var(--ink);
  font-size: 1rem;
}

.panel-scan {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
}

.panel-scan .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate(-50%, -50%);
}

.panel-body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.access-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f6faf8;
}

.access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.access-head p {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

.access-head span {
  flex: 0 0 auto;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgb(15 159 154 / 10%);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin-top: 1.25rem;
}

.stat-row div {
  min-width: 0;
  padding: .85rem .4rem;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgb(20 33 43 / 5%);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.stat-row span {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 750;
  white-space: nowrap;
}

.chart {
  display: flex;
  align-items: end;
  gap: .5rem;
  height: 7rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
}

.bar {
  flex: 1 1 0;
  max-width: 2rem;
  min-width: .6rem;
  border-radius: 10px 10px 0 0;
  background: rgb(15 159 154 / 20%);
}

.bar-42 {
  height: 42%;
}

.bar-72 {
  height: 72%;
}

.bar-50 {
  height: 50%;
}

.bar-88 {
  height: 88%;
}

.bar-61 {
  height: 61%;
}

.bar-76 {
  height: 76%;
}

.bar-44 {
  height: 44%;
}

.activity-stack {
  display: grid;
  gap: .75rem;
  min-width: 0;
}

.mini-card,
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 22px;
}

.mini-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgb(20 33 43 / 6%);
}

.whatsapp-card {
  background: var(--ink);
  color: #fff;
}

.mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 16px;
}

.mini-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  transform: translate(-50%, -50%);
}

.mini-icon.teal {
  background: rgb(15 159 154 / 10%);
  color: var(--teal-dark);
}

.mini-icon.amber {
  background: rgb(246 184 90 / 20%);
  color: #94621a;
}

.mini-icon.blue {
  background: rgb(31 111 235 / 10%);
  color: var(--cobalt);
}

.mini-icon.light {
  background: rgb(255 255 255 / 15%);
  color: #fff;
}

.mini-card div,
.whatsapp-card div {
  min-width: 0;
}

.mini-card strong,
.mini-card span,
.whatsapp-card strong,
.whatsapp-card span {
  display: block;
}

.mini-card strong,
.whatsapp-card strong {
  color: inherit;
  font-size: .9rem;
  line-height: 1.25;
}

.mini-card span {
  margin-top: .15rem;
  color: var(--muted);
  font-size: .88rem;
}

.whatsapp-card span {
  margin-top: .15rem;
  color: rgb(255 255 255 / 70%);
  font-size: .88rem;
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: #fbfdfc;
}

.panel-footer span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 750;
  box-shadow: 0 8px 20px rgb(20 33 43 / 5%);
}

.panel-footer .icon {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}

.trust {
  border-block: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  gap: .5rem;
  padding: 1.5rem 0;
}

.trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .15rem .85rem;
  padding: .8rem;
  border-radius: var(--radius);
}

.trust h2 {
  color: var(--ink);
  font-size: .96rem;
}

.trust p {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgb(15 159 154 / 10%);
  color: var(--teal-dark);
}

.icon-box .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-box.dark {
  background: var(--graphite);
  color: #fff;
}

.section {
  padding: 4.75rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-white {
  background: #fff;
}

.section-heading {
  max-width: 43rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading > p,
.eyebrow {
  margin-bottom: .75rem;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-section h2 {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading > span,
.contact-section > .shell > div > p:not(.eyebrow) {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.cards,
.sector-grid,
.example-grid,
.steps,
.benefits,
.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.card,
.service-card,
.sector-grid article,
.example-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.card,
.service-card,
.sector-grid article {
  padding: 1.35rem;
}

.card,
.service-card {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.card:hover,
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgb(15 159 154 / 38%);
  box-shadow: var(--shadow-soft);
}

.card h3,
.service-card h3,
.sector-grid h3,
.example-grid h3 {
  margin-top: 1.1rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-card h3,
.example-grid h3 {
  font-size: 1.22rem;
}

.card p,
.service-card p,
.sector-grid p,
.example-grid p {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

.service-card {
  background: var(--background);
}

.service-card:hover {
  background: #fff;
}

.sector-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
}

.sector-grid article h3 {
  margin-top: 0;
}

.sector-grid article p {
  grid-column: 2;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.dark-section .section-heading > p {
  color: var(--teal);
}

.dark-section .section-heading h2 {
  color: #fff;
}

.dark-section .section-heading > span {
  color: rgb(255 255 255 / 70%);
}

.steps article {
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 24px;
  background: rgb(255 255 255 / 7%);
}

.steps article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
}

.steps h3 {
  margin-top: 1.25rem;
  color: #fff;
  font-size: 1.08rem;
}

.steps p {
  margin-top: .75rem;
  color: rgb(255 255 255 / 70%);
  font-size: .92rem;
  line-height: 1.65;
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.benefits {
  margin-top: 0;
}

.benefits span {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 4.5rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.benefits .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cobalt);
}

.example-grid article {
  padding: 1.5rem;
  background: var(--background);
  box-shadow: none;
}

.example-grid strong {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  font-size: .78rem;
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-list {
  margin-top: 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 3.25rem 1.25rem 1.25rem;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--background);
  color: var(--teal-dark);
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.contact-section h2 {
  max-width: 40rem;
  font-size: 2.25rem;
}

.contact-card {
  display: grid;
  gap: .55rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--background);
  color: var(--muted);
  font-style: normal;
}

.contact-card strong {
  color: var(--ink);
}

.contact-card a {
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-bottom: .25rem;
  color: var(--ink);
  font-size: 1.45rem;
}

.contact-form label {
  display: grid;
  gap: .45rem;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--background);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
}

.contact-form input {
  height: 3rem;
  padding: 0 .95rem;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
  padding: .85rem .95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(102 117 129 / 72%);
}

.contact-form [aria-invalid="true"] {
  border-color: #cc3d3d;
  background: #fff8f8;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.3rem;
  color: var(--teal-dark);
  font-size: .9rem;
  font-weight: 750;
}

.form-status.error {
  color: #b42318;
}

.form-actions {
  display: grid;
  gap: .75rem;
}

.footer {
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 2.75rem 0;
}

.footer p,
.footer span,
.footer a {
  color: rgb(255 255 255 / 70%);
}

.footer p {
  max-width: 28rem;
  margin-top: 1rem;
  font-size: .94rem;
  line-height: 1.65;
}

.footer h2 {
  margin-bottom: 1rem;
  color: rgb(255 255 255 / 52%);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: .75rem;
}

.footer a {
  width: fit-content;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: .78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 34px rgb(15 159 154 / 34%);
  transition: background .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.floating-whatsapp .icon {
  width: 1.55rem;
  height: 1.55rem;
}

@media (max-width: 559px) {
  .floating-whatsapp {
    right: .85rem;
    bottom: calc(.85rem + env(safe-area-inset-bottom));
    width: 3rem;
    height: 3rem;
  }

  .floating-whatsapp {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(.6rem);
  }

  body.show-floating-whatsapp .floating-whatsapp {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-whatsapp .icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (min-width: 560px) {
  .hero-actions,
  .form-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .panel-body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }

  .brand {
    max-width: none;
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.32rem;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .cards-three,
  .sector-grid,
  .example-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .hero {
    padding-bottom: 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, .92fr);
    gap: 3.5rem;
  }

  h1 {
    font-size: 3.88rem;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0;
    border-radius: 999px;
    background: transparent;
    font-size: .92rem;
  }

  .menu-toggle {
    display: none;
  }

  .section {
    padding: 5.75rem 0;
  }

  .cards-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .split {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  }

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

  .faq-layout,
  .contact-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .7fr) minmax(0, .8fr);
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 1.25rem, 72rem);
  }

  h1 {
    font-size: 2.15rem;
  }

  .panel-body,
  .panel-header,
  .panel-footer {
    padding-inline: .85rem;
  }

  .access-card,
  .mini-card,
  .whatsapp-card {
    padding: .85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
