:root {
  --navy-900: #081a42;
  --navy-800: #0d2a66;
  --sky-500: #2f9dff;
  --sky-100: #eaf6ff;
  --header-icon: #05414b;
  --white: #ffffff;
  --gray-900: #1e2a3a;
  --gray-600: #5f6e84;
  --gray-200: #dbe6f2;
  --emerald-500: #0bb97f;
  --emerald-600: #069364;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-1: 0 12px 30px rgba(8, 26, 66, 0.08);
  --shadow-2: 0 20px 35px rgba(8, 26, 66, 0.12);
  --header-height-mobile: 84px;
  --header-height-desktop: 70px;
  --anchor-offset-mobile: calc(var(--header-height-mobile) + 18px);
  --anchor-offset-desktop: calc(var(--header-height-desktop) + 16px);
  --anchor-offset-current: var(--anchor-offset-mobile);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset-current);
}

main section[id] {
  scroll-margin-top: var(--anchor-offset-current);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-spacing {
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #032f36 0%, #05414b 52%, #0a5b67 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13, 42, 102, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-height-mobile);
  position: relative;
  padding: 0.45rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(74vw, 320px);
}

.brand-logo-shell {
  display: inline-flex;
  min-width: 0;
}

.brand-logo-fallback {
  display: block;
}

.brand-logo-fallback {
  width: clamp(170px, 52vw, 230px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
}

.menu-toggle i {
  width: 20px;
  height: 20px;
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  background: var(--white);
  border: 1px solid rgba(13, 42, 102, 0.1);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow-1);
  display: none;
  flex-direction: column;
  padding: 0.6rem;
  gap: 0.2rem;
}

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

.site-nav a {
  padding: 0.7rem 0.75rem;
  color: var(--gray-900);
  border-radius: 10px;
  font-weight: 500;
}

.site-nav a:hover {
  background: var(--sky-100);
  color: var(--navy-800);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(140deg, #f9fdff 0%, #eef8ff 100%);
  padding: 2rem 0 3.25rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 157, 255, 0.12), transparent 40%),
    radial-gradient(circle at 10% 82%, rgba(11, 185, 127, 0.1), transparent 32%),
    linear-gradient(
      102deg,
      rgba(249, 253, 255, 0.84) 0%,
      rgba(249, 253, 255, 0.7) 32%,
      rgba(249, 253, 255, 0.48) 58%,
      rgba(249, 253, 255, 0.24) 76%,
      rgba(249, 253, 255, 0.08) 100%
    );
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 5s ease;
  will-change: opacity, transform;
}

.hero-bg-slide.is-active {
  opacity: 0.72;
  transform: scale(1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.35rem;
}

.hero-grid,
.operators-carousels,
.cards-grid,
.form-grid,
.footer-grid {
  min-width: 0;
}

.hero-grid > *,
.operators-carousels > *,
.cards-grid > *,
.form-grid > *,
.footer-grid > * {
  min-width: 0;
}

.hero-badge {
  margin: 0 0 0.85rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  font-size: clamp(1rem, 3vw, 1.13rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-seal {
  position: relative;
  width: clamp(102px, 21vw, 132px);
  height: clamp(102px, 21vw, 132px);
  margin: 0 auto 1rem;
  display: block;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 26, 66, 0.18);
}

.hero-seal-art {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-seal-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(5, 65, 75, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  text-shadow: 0 1px 3px rgba(3, 12, 27, 0.72);
  box-shadow: 0 5px 10px rgba(8, 26, 66, 0.22);
  white-space: nowrap;
}

.keep-inline {
  white-space: nowrap;
}

.hero-green-text {
  color: var(--emerald-500);
}

.hero-content > p:not(.hero-badge) {
  margin: 1rem 0 1.4rem;
  color: var(--gray-900);
  font-size: clamp(1rem, 3vw, 1.13rem);
  max-width: 60ch;
}

.hero-content > p:not(.hero-badge) strong {
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-points {
  list-style: none;
  padding: 0.78rem 0.88rem;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.5rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 18px rgba(8, 26, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
}

.hero-points::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.008) 58%);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #102039;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: none;
}

.hero-points li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.5rem;
}

.hero-points li span {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-points li i,
.hero-points li .lucide {
  width: 18px;
  height: 18px;
  color: #0a2230;
  flex: 0 0 18px;
  min-width: 18px;
  min-height: 18px;
}

.hero .hero-content h1 {
  text-shadow:
    0 1px 1px rgba(255, 255, 255, 0.9),
    0 3px 12px rgba(255, 255, 255, 0.65);
}

.hero .hero-badge,
.hero .hero-actions .btn {
  color: #ffffff;
  text-shadow:
    0 1px 1px rgba(3, 12, 27, 0.42),
    0 2px 8px rgba(3, 12, 27, 0.32);
}

.hero .hero-content > p:not(.hero-badge) {
  color: #102039;
  text-shadow: none;
  padding: 0.82rem 0.92rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 18px rgba(8, 26, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
}

.hero .hero-content > p:not(.hero-badge)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.008) 58%);
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--gray-600);
  max-width: 65ch;
}

.section-title-icon,
.card-title-icon,
.footer-head-icon,
.footer-line-icon {
  display: inline-block;
  vertical-align: -0.16em;
}

.section-title-icon {
  width: 1.12em;
  height: 1.12em;
  margin-right: 0.42rem;
  color: var(--sky-500);
}

.card-title-icon {
  width: 1.08em;
  height: 1.08em;
  margin-right: 0.36rem;
  color: var(--sky-500);
}

.icon-float {
  animation: icon-float 3.2s ease-in-out infinite;
}

.icon-soft-pulse {
  animation: icon-soft-pulse 2.2s ease-in-out infinite;
}

.operators {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.operators-carousels {
  display: grid;
  gap: 0.85rem;
}

.operator-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  min-width: 0;
}

.operator-carousel::before,
.operator-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38px;
  z-index: 2;
  pointer-events: none;
}

.operator-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f8fcff 0%, rgba(248, 252, 255, 0) 100%);
}

.operator-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f8fcff 0%, rgba(248, 252, 255, 0) 100%);
}

.operator-track {
  display: flex;
  width: max-content;
  animation: operator-marquee 28s linear infinite;
  will-change: auto;
}

.operator-carousel-reverse .operator-track {
  animation-direction: reverse;
  animation-duration: 26s;
}

.operator-set {
  display: flex;
  flex: 0 0 auto;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

.operator-card {
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: grid;
  place-items: center;
  width: clamp(142px, 35vw, 180px);
  height: clamp(88px, 20vw, 106px);
  box-shadow: 0 10px 20px rgba(8, 26, 66, 0.06);
}

.operator-logo {
  width: 100%;
  max-width: 130px;
  height: 46px;
  object-fit: contain;
  object-position: center;
}

.operator-logo:not([src*="amil" i]) {
  max-width: 143px;
  height: 51px;
}

@keyframes operator-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes icon-soft-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(0.94);
  }
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.differentials {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow:
    0 10px 18px rgba(8, 26, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
}

.info-card i {
  width: 24px;
  height: 24px;
  color: var(--sky-500);
}

.info-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: var(--navy-900);
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  color: var(--gray-600);
}

.lead-form {
  background:
    radial-gradient(circle at 18% 15%, rgba(47, 157, 255, 0.12), transparent 32%),
    #f4faff;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.form-copy p {
  color: var(--gray-600);
  margin: 0.75rem 0 1rem;
}

.form-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.form-copy li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gray-900);
}

.form-copy i {
  width: 18px;
  height: 18px;
  color: var(--emerald-500);
}

.form-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow:
    0 10px 18px rgba(8, 26, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid #05414b;
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  color: var(--gray-900);
  padding: 0.75rem 0.85rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(47, 157, 255, 0.15);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: #df3a4e;
  box-shadow: 0 0 0 4px rgba(223, 58, 78, 0.14);
}

.error-msg {
  min-height: 1rem;
  display: block;
  margin-top: 0.35rem;
  color: #c12c3f;
  font-size: 0.82rem;
}

.form-feedback {
  min-height: 1.25rem;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
}

.form-feedback.success {
  color: #047e55;
}

.form-feedback.error {
  color: #bf2f43;
}

.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.quote-card {
  margin: 0;
  padding: 1.2rem;
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  box-shadow:
    0 10px 18px rgba(8, 26, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(5px) saturate(120%);
  overflow: hidden;
}

.info-card::before,
.form-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.008) 58%);
}

.info-card > *,
.form-card > *,
.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-card-with-avatar {
  padding-bottom: 4.2rem;
}

.quote-card cite {
  display: block;
  margin: 0;
  color: var(--gray-600);
  font-style: normal;
  font-size: 0.9rem;
}

.quote-card-with-avatar cite {
  position: absolute;
  left: 1.2rem;
  right: 4.1rem;
  bottom: 1rem;
}

.quote-card-with-avatar .quote-avatar {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 5px 12px rgba(8, 26, 66, 0.18);
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.quote-card-with-avatar .quote-avatar-1 {
  background-image: url("img/testemunho1-avatar-132.jpg");
}

.quote-card-with-avatar .quote-avatar-2 {
  background-image: url("img/testemunho2-avatar-132.jpg");
}

.quote-card-with-avatar .quote-avatar-3 {
  background-image: url("img/testemunho3-avatar-132.jpg");
}

.quote-card-with-avatar .quote-avatar-4 {
  background-image: url("img/testemunho4-avatar-132.jpg");
}

.quote-card-with-avatar .quote-avatar-5 {
  background-image: url("img/testemunho5.jpeg");
}

.site-footer {
  background: linear-gradient(90deg, #032f36 0%, #05414b 52%, #0a5b67 100%);
  color: #d4e2ff;
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.45rem;
  color: var(--white);
}

.site-footer p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.footer-head-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.35rem;
  color: #bff5e3;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-line-icon {
  width: 16px;
  height: 16px;
  color: #a8ffe3;
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 226, 255, 0.28);
  border-radius: 9px;
  display: grid;
  place-items: center;
}

.social-links i {
  width: 17px;
  height: 17px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 0.8rem 1.05rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn-cta {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
}

.btn-lg {
  min-height: 48px;
}

.btn-block {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #08b478, #059363);
  box-shadow: 0 16px 34px rgba(5, 147, 99, 0.38);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.whatsapp-float i {
  width: 18px;
  height: 18px;
}

.site-header i[data-lucide],
main i[data-lucide],
.whatsapp-float i[data-lucide],
.site-header .lucide,
main .lucide,
.whatsapp-float .lucide {
  color: var(--header-icon);
  stroke: currentColor;
}

.whatsapp-float i[data-lucide],
.whatsapp-float .lucide {
  color: #ffffff;
  stroke: currentColor;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fade-in {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (min-width: 740px) {
  :root {
    --anchor-offset-current: var(--anchor-offset-desktop);
  }

  .section-spacing {
    padding: 4.6rem 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    min-height: var(--header-height-desktop);
    padding: 0.34rem 0;
  }

  .brand {
    max-width: none;
  }

  .brand-logo-fallback {
    width: 195px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    justify-content: flex-end;
    padding: 0;
    gap: 0.08rem;
  }

  .site-nav a {
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.52rem 0.56rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  .header-cta {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 0.6rem 0.79rem;
    border-radius: 9px;
  }

  .hero {
    padding: 2.35rem 0 3.8rem;
  }

  .hero::before {
    background:
      radial-gradient(circle at 86% 16%, rgba(47, 157, 255, 0.12), transparent 42%),
      radial-gradient(circle at 11% 85%, rgba(11, 185, 127, 0.1), transparent 32%),
      linear-gradient(
        100deg,
        rgba(249, 253, 255, 0.86) 0%,
        rgba(249, 253, 255, 0.72) 34%,
        rgba(249, 253, 255, 0.5) 58%,
        rgba(249, 253, 255, 0.28) 76%,
        rgba(249, 253, 255, 0.1) 100%
      );
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 1.4rem;
  }

  .hero-content {
    align-self: center;
    max-width: min(100%, 720px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }

  .hero-content h1,
  .hero-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-points {
    width: min(100%, 480px);
    margin-left: 0;
    margin-right: 0;
  }

  .operators-carousels {
    gap: 1rem;
  }

  .operator-track {
    animation-play-state: paused;
  }

  .operators-carousels.is-ready .operator-track {
    animation-play-state: running;
  }

  .operator-set {
    gap: 1rem;
    padding-right: 1rem;
  }

  .operator-card {
    width: clamp(180px, 16vw, 210px);
    height: 112px;
    padding: 1rem 1.1rem;
  }

  .operator-logo {
    max-width: 170px;
    height: 64px;
  }

  .operator-logo:not([src*="amil" i]) {
    max-width: 179px;
    height: 67px;
  }

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

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

  .testimonials .cards-grid .quote-card {
    grid-column: span 2;
  }

  .testimonials .cards-grid .quote-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .testimonials .cards-grid .quote-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .brand-logo-fallback {
    width: 156px;
  }
}

@media (max-width: 739px) {
  .testimonials .quote-card {
    height: auto !important;
  }

  .social-links a[aria-label="LinkedIn VERALUZ"] {
    order: 1;
  }

  .social-links a[aria-label="Instagram VERALUZ"] {
    order: 2;
  }

  .menu-toggle {
    color: #05414b;
  }

  .header-cta {
    display: none !important;
  }
}

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

  .operator-track {
    animation-duration: 28s !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }

  .operator-carousel-reverse .operator-track {
    animation-duration: 26s !important;
  }

}
