:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #f6f8fb;
  --muted: #64748b;
  --line: rgba(255, 255, 255, 0.1);
  --orange: #ff7a1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 50% -10%, rgba(36, 103, 174, 0.1), transparent 34rem),
    radial-gradient(circle at 100% 18%, rgba(255, 122, 26, 0.055), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #f2f5f8 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(rgba(20, 38, 65, 0.055) 0.7px, transparent 0.7px),
    linear-gradient(rgba(20, 38, 65, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 38, 65, 0.02) 1px, transparent 1px);
  background-size: 18px 18px, 64px 64px, 64px 64px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.bio {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 30px 22px 42px;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card,
.service-card {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.hero-card {
  min-height: 560px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 24%, rgba(41, 141, 224, 0.34), transparent 24rem),
    linear-gradient(135deg, #08192f 0%, #071322 56%, #112a48 100%);
}

.hero-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 60%, rgba(255, 255, 255, 0.07)),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.018) 22px 23px);
  content: "";
}

.hero-card::after {
  position: absolute;
  right: -12%;
  bottom: -60%;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(74, 164, 242, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(31, 111, 180, 0.06),
    0 0 0 140px rgba(31, 111, 180, 0.035);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 50px 0 50px 54px;
}

.service-label {
  display: inline-flex;
  align-items: center;
  color: #dce9f6;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-label::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--card-accent, var(--orange));
  box-shadow: 0 0 18px var(--card-accent, var(--orange));
  content: "";
}

.hero-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy > p {
  max-width: 540px;
  margin: 18px 0 0;
  color: #b9c8d8;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-copy > p + p {
  margin-top: 12px;
}

.hero-copy strong {
  color: #ff9b52;
  font-weight: 800;
}

.hero-signature {
  display: inline-flex;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4f8fc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 49%;
  max-width: 500px;
  filter: drop-shadow(-24px 24px 35px rgba(0, 0, 0, 0.32));
}

.quick-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 16px 0 30px;
}

.quick-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.quick-card:hover,
a.quick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(180, 255, 203, 0.32);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.quick-card-vip {
  background: linear-gradient(135deg, #06491f, #0b7a34 56%, #13a54c);
}

.quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 14px;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.quick-whatsapp-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.quick-card-text {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.quick-card small,
.quick-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.66rem, 2vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.quick-card strong {
  font-size: clamp(0.76rem, 2.7vw, 1rem);
  line-height: 1.08;
  letter-spacing: 0.025em;
}

.quick-action-icon {
  width: 34px;
  height: 34px;
  filter: invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.quick-click-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
  -webkit-mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
}

.quick-button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-mini-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 8px;
  border: 1px solid rgba(9, 117, 52, 0.42);
  border-radius: 16px;
  color: #053d1e;
  background:
    radial-gradient(circle at 84% 8%, rgba(19, 165, 76, 0.22), transparent 7rem),
    linear-gradient(180deg, #f6fff9 0%, #def7e7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(9, 79, 38, 0.18);
  font-size: clamp(0.8rem, 1.9vw, 0.94rem);
  font-weight: 900;
  line-height: 1.14;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-mini-button span {
  display: block;
}

.quick-mini-button span + span {
  margin-top: 3px;
}

.quick-mini-button:hover,
.quick-mini-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(19, 165, 76, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 34px rgba(9, 79, 38, 0.24);
}

.sticky-actions-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: none;
  padding: calc(env(safe-area-inset-top, 0px) + 8px) 14px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(19, 165, 76, 0.12), transparent 18rem);
  border-bottom: 1px solid rgba(9, 117, 52, 0.12);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-group-invite {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(180, 255, 203, 0.32);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #06491f, #0b7a34 56%, #13a54c);
  box-shadow: 0 12px 26px rgba(9, 79, 38, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.sticky-group-invite::before {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -42%;
  z-index: 0;
  width: 36%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0.44) 50%, rgba(255, 255, 255, 0.12) 64%, transparent 100%);
  transform: translateX(-140%) skewX(-18deg);
  animation: sticky-invite-flare 4.8s ease-in-out infinite;
  pointer-events: none;
}

.sticky-group-invite > * {
  position: relative;
  z-index: 1;
}

.sticky-group-invite span:not(.sticky-click-icon) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.sticky-group-invite strong,
.sticky-group-invite small {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-group-invite strong {
  font-size: clamp(0.62rem, 3vw, 0.78rem);
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.05;
}

.sticky-group-invite small {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.56rem, 2.45vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.sticky-whatsapp-icon {
  width: 28px;
  height: 28px;
  filter: invert(1) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
}

.sticky-click-icon {
  width: 28px;
  height: 28px;
  background: #ffffff;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.16));
  mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
  -webkit-mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
  animation: sticky-click-pulse 1.9s ease-in-out infinite;
  transform-origin: center;
}

.sticky-button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.sticky-button-row a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 4px;
  border: 1px solid rgba(19, 165, 76, 0.34);
  border-radius: 13px;
  color: #075426;
  background:
    radial-gradient(circle at 82% 18%, rgba(19, 165, 76, 0.12), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 245, 0.96));
  box-shadow: 0 10px 22px rgba(9, 79, 38, 0.12);
  font-size: clamp(0.64rem, 2.75vw, 0.82rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.sticky-button-row a span {
  display: block;
}

.sticky-button-row a span + span {
  margin-top: 1px;
}

@keyframes sticky-invite-flare {
  0%,
  52% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }

  62% {
    opacity: 1;
  }

  78% {
    transform: translateX(510%) skewX(-18deg);
    opacity: 0;
  }

  100% {
    transform: translateX(510%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes sticky-click-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.benefits {
  display: grid;
  gap: 20px;
}

.service-card {
  --card-accent: #ff8b35;
  display: block;
  min-height: 330px;
  border-radius: 30px;
  background: var(--card-background);
  outline: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--card-accent) 62%, white 18%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.service-card::after {
  position: absolute;
  right: 4%;
  bottom: -62%;
  z-index: -1;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--card-accent) 32%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 54px color-mix(in srgb, var(--card-accent) 5%, transparent);
  content: "";
}

.service-copy {
  position: relative;
  z-index: 2;
  width: 62%;
  padding: 38px 0 34px 42px;
}

.service-icon {
  display: none;
  width: 38px;
  height: 38px;
  margin-top: 18px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 50%, white 12%);
  border-radius: 12px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 12%, transparent);
}

.service-copy h2 {
  max-width: 520px;
  margin: 19px 0 13px;
  font-size: clamp(1.95rem, 4vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--card-muted, #bcc9d7);
  font-size: 1rem;
  line-height: 1.5;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-cta b {
  color: var(--card-accent);
  font-size: 1rem;
}

.service-cta svg {
  flex: 0 0 auto;
  width: 1.18rem;
  height: 1.18rem;
  color: var(--card-accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.igreen-action {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  width: min(310px, 100%);
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(130, 220, 85, 0.24);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(130, 220, 85, 0.24), transparent 18rem),
    linear-gradient(135deg, #071713, #0d3828 54%, #123f22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.service-igreen:hover .igreen-action,
a.service-igreen:focus-visible .igreen-action {
  transform: translateY(-2px);
  border-color: rgba(130, 220, 85, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.igreen-action span,
.igreen-action small {
  display: block;
}

.igreen-action span {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.05;
  white-space: nowrap;
}

.igreen-action small {
  margin-top: 5px;
  color: rgba(224, 255, 211, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.igreen-action-icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 28px;
  height: 28px;
  background: var(--card-accent);
  mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
  -webkit-mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
}

.service-action {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  width: min(310px, 100%);
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 32%, white 8%);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, color-mix(in srgb, var(--card-accent) 24%, transparent), transparent 18rem),
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 9%, #071017 91%), color-mix(in srgb, var(--card-accent) 26%, #141b22 74%) 54%, color-mix(in srgb, var(--card-accent) 16%, #080d13 84%));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover .service-action,
.service-card:focus-visible .service-action {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--card-accent) 54%, white 16%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.service-action-copy {
  display: block;
  min-width: 0;
}

.service-action strong,
.service-action small {
  display: block;
}

.service-action strong {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.05;
  white-space: nowrap;
}

.service-action small {
  margin-top: 5px;
  color: color-mix(in srgb, var(--card-accent) 36%, white 62%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-action-icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 28px;
  height: 28px;
  background: var(--card-accent);
  mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
  -webkit-mask: url("../assets/card-art/click-2384.svg") center / contain no-repeat;
}

.service-photo {
  position: absolute;
  right: -4%;
  bottom: -22%;
  z-index: 1;
  width: auto;
  height: 122%;
  max-width: none;
  filter: drop-shadow(-20px 22px 30px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.service-scene {
  position: absolute;
  right: -2%;
  bottom: -8%;
  z-index: 1;
  width: auto;
  height: 116%;
  max-width: none;
  border-radius: 22px;
  filter: drop-shadow(-20px 22px 30px rgba(0, 0, 0, 0.22));
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  pointer-events: none;
}

.scene-health {
  right: -1%;
  bottom: -7%;
}

.scene-supplier {
  right: -7%;
  bottom: -12%;
  width: 62%;
  height: auto;
  mask-image: none;
  -webkit-mask-image: none;
}

.scene-cars {
  right: 1%;
  bottom: -10%;
  height: 120%;
}

.photo-insurance {
  right: -3%;
  bottom: -17%;
  height: 122%;
}

.photo-igreen {
  right: -3%;
  bottom: -16%;
  height: 122%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.service-supplier {
  --card-accent: #ff933e;
  --card-background: radial-gradient(circle at 82% 25%, rgba(255, 149, 65, 0.2), transparent 22rem), linear-gradient(135deg, #1b1210, #301b12 52%, #15100f);
  min-height: 365px;
}

.supplier-feature {
  display: grid;
  gap: 12px;
}

.health-feature {
  display: grid;
  gap: 12px;
}

.service-supplier .supplier-copy {
  width: 68%;
  text-align: left;
}

.supplier-label {
  font-size: 0.8rem;
  letter-spacing: 0.085em;
  line-height: 1.25;
  white-space: nowrap;
}

.supplier-heading {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.supplier-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.05rem);
  white-space: nowrap;
}

.supplier-description {
  max-width: 490px;
  margin-top: 16px;
  color: #ead5c5;
}

.supplier-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.service-supplier .supplier-actions {
  position: absolute;
  bottom: 28px;
  left: 42px;
  z-index: 3;
  width: min(360px, calc(100% - 74px));
}

.supplier-action {
  display: grid;
  align-content: center;
  min-height: 76px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.supplier-action:hover,
.supplier-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.supplier-action span,
.supplier-action small {
  display: block;
}

.supplier-action span {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.05;
  white-space: nowrap;
}

.supplier-action small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.supplier-action-more {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  background: radial-gradient(circle at 82% 25%, rgba(255, 149, 65, 0.2), transparent 22rem), linear-gradient(135deg, #1b1210, #301b12 52%, #15100f);
}

.supplier-action-more span {
  font-size: 0.98rem;
}

.supplier-action-icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 28px;
  height: 28px;
  filter: invert(62%) sepia(83%) saturate(1481%) hue-rotate(338deg) brightness(101%) contrast(101%);
}

.health-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-health .health-actions {
  position: absolute;
  right: 32px;
  bottom: 26px;
  left: 42px;
  z-index: 3;
}

.health-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 15px 18px;
  border: 1px solid rgba(144, 230, 238, 0.18);
  border-radius: 20px;
  color: #f7fdff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.health-action:hover,
.health-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(144, 230, 238, 0.36);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.health-action span {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.health-action-consult {
  background: radial-gradient(circle at 82% 25%, rgba(86, 213, 224, 0.2), transparent 22rem), linear-gradient(135deg, #081b27, #0b3440 54%, #07151d);
}

.health-action-plans {
  background: linear-gradient(135deg, #0a3040, #116b84 54%, #56d5e0);
}

.service-igreen {
  --card-accent: #82dc55;
  --card-background: radial-gradient(circle at 82% 20%, rgba(88, 220, 104, 0.24), transparent 22rem), linear-gradient(135deg, #091c18, #0c3527 54%, #071713);
}

.service-health {
  --card-accent: #56d5e0;
  --card-background: radial-gradient(circle at 83% 18%, rgba(86, 213, 224, 0.2), transparent 22rem), linear-gradient(135deg, #081b27, #0b3440 54%, #07151d);
  min-height: 365px;
  scroll-margin-top: 132px;
}

.service-insurance {
  --card-accent: #76a9ff;
  --card-background: radial-gradient(circle at 82% 18%, rgba(77, 133, 235, 0.24), transparent 22rem), linear-gradient(135deg, #0b162d, #142d5d 54%, #091225);
}

.service-store {
  --card-accent: #d9a25d;
  --card-background: radial-gradient(circle at 82% 18%, rgba(217, 162, 93, 0.24), transparent 22rem), linear-gradient(135deg, #1b1510, #3a2817 54%, #140f0b);
}

.service-cars {
  --card-accent: #ff7a1a;
  --card-background: radial-gradient(circle at 82% 18%, rgba(255, 122, 26, 0.23), transparent 22rem), linear-gradient(135deg, #0a1527, #162c47 54%, #08111f);
}

.service-cars .service-action {
  border-color: rgba(104, 170, 255, 0.28);
  background:
    radial-gradient(circle at 82% 25%, rgba(66, 145, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #071426, #12365d 54%, #081b34);
}

.service-cars:hover .service-action,
.service-cars:focus-visible .service-action {
  border-color: rgba(126, 188, 255, 0.48);
}

.service-cars .service-action small {
  color: rgba(211, 231, 255, 0.76);
}

footer {
  display: grid;
  gap: 5px;
  padding: 34px 0 4px;
  color: #617083;
  font-size: 0.82rem;
  text-align: center;
}

footer p {
  margin: 0;
}

footer p:first-child {
  color: #1f2f43;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, calc((100vw - 920px) / 2 + 18px));
  bottom: 22px;
  z-index: 20;
}

.whatsapp-float summary {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, #0a7c35, #1fbe5d);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  list-style: none;
}

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

.whatsapp-float summary img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  gap: 8px;
  min-width: 176px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 15, 22, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.whatsapp-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #075426, #129445);
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .scene-supplier {
    right: -12%;
    width: 58%;
  }
}

@media (max-width: 720px) {
  .sticky-actions-header {
    display: block;
  }

  body.show-sticky-actions .sticky-actions-header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bio {
    padding: 18px 16px 34px;
  }

  .hero-card {
    min-height: 350px;
    border-radius: 28px;
  }

  .hero-copy {
    width: min(57%, 235px);
    padding: 36px 0 0 30px;
  }

  .hero-copy h2 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9.4vw, 3rem);
  }

  .hero-copy > p {
    max-width: 26ch;
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .hero-copy > p + p {
    margin-top: 10px;
  }

  .hero-intro strong,
  .hero-mobile-line {
    display: block;
  }

  .hero-proof .hero-mobile-line {
    white-space: nowrap;
  }

  .hero-signature {
    display: none;
  }

  .hero-photo {
    right: -10%;
    bottom: 0;
    width: 61%;
  }

  .quick-links {
    gap: 10px;
    margin: 12px 0 24px;
  }

  .quick-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 8px;
    min-height: 72px;
    padding: 11px 14px;
    border-radius: 19px;
  }

  .quick-icon {
    display: none;
  }

  .quick-card small {
    font-size: clamp(0.58rem, 2.6vw, 0.68rem);
  }

  .quick-card strong {
    font-size: clamp(0.62rem, 3vw, 0.78rem);
    letter-spacing: 0.015em;
  }

  .quick-action-icon,
  .quick-click-icon {
    width: 30px;
    height: 30px;
  }

  .quick-button-row {
    gap: 7px;
  }

  .quick-mini-button {
    min-height: 62px;
    padding: 0 4px;
    border-color: rgba(19, 165, 76, 0.48);
    border-radius: 14px;
    font-size: clamp(0.72rem, 3.05vw, 0.84rem);
    line-height: 1.12;
  }

  .quick-mini-button span + span {
    margin-top: 2px;
  }

  .service-card {
    min-height: 305px;
    border-radius: 26px;
  }

  .service-supplier {
    min-height: 455px;
  }

  .service-supplier .supplier-copy {
    width: 82%;
  }

  .supplier-heading {
    gap: 9px;
    margin-top: 15px;
  }

  .supplier-heading h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .supplier-description {
    max-width: 85%;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .supplier-actions {
    gap: 10px;
  }

  .service-supplier .supplier-actions {
    bottom: 22px;
    left: 28px;
    width: calc(100% - 56px);
  }

  .health-actions {
    gap: 10px;
  }

  .service-health {
    min-height: 370px;
  }

  .service-health .health-actions {
    right: 28px;
    bottom: 22px;
    left: 28px;
  }

  .supplier-action {
    min-height: 72px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .supplier-action-more {
    column-gap: 8px;
  }

  .supplier-action-more span {
    font-size: 0.96rem;
  }

  .health-action {
    min-height: 72px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .service-copy {
    width: 67%;
    padding: 29px 0 27px 28px;
  }

  .service-copy h2 {
    margin-top: 15px;
    font-size: clamp(1.75rem, 7.3vw, 2.45rem);
  }

  .service-copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .service-label {
    font-size: 0.65rem;
  }

  .service-cta {
    margin-top: 18px;
    padding: 10px 13px;
    font-size: 0.65rem;
  }

  .igreen-action {
    width: min(292px, calc(100vw - 86px));
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .igreen-action span {
    font-size: 0.92rem;
  }

  .igreen-action small {
    font-size: 0.62rem;
  }

  .igreen-action-icon {
    width: 24px;
    height: 24px;
  }

  .service-action {
    width: min(292px, calc(100vw - 86px));
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .service-action strong {
    font-size: 0.92rem;
  }

  .service-action small {
    font-size: 0.62rem;
  }

  .service-action-icon {
    width: 24px;
    height: 24px;
  }

  .service-photo {
    right: -13%;
    bottom: -18%;
    height: 112%;
  }

  .service-scene {
    right: -12%;
    bottom: -5%;
    height: 107%;
  }

  .scene-supplier {
    right: -20%;
    bottom: -10%;
    width: 102%;
    height: auto;
  }

  .scene-cars {
    right: 0;
    bottom: -7%;
    height: 111%;
  }

  .photo-insurance {
    right: -12%;
    bottom: -12%;
    height: 114%;
  }

  .photo-igreen {
    right: -3%;
    bottom: -10%;
    height: 116%;
  }

  .service-igreen .service-copy {
    width: 60%;
  }

  .service-store .service-photo {
    right: -14%;
    bottom: -10%;
    height: 102%;
  }
}

@media (min-width: 431px) and (max-width: 720px) {
  .hero-card {
    min-height: 372px;
  }

  .hero-copy {
    width: min(54%, 230px);
  }

  .hero-copy h2 {
    font-size: clamp(2.05rem, 7.2vw, 2.55rem);
  }

  .hero-photo {
    right: -13%;
    bottom: -20px;
    width: min(58%, 250px);
  }
}

@media (max-width: 430px) {
  .bio {
    padding-inline: 14px;
  }

  .hero-card {
    min-height: 342px;
  }

  .hero-copy {
    width: min(57%, 215px);
    padding-left: 25px;
  }

  .hero-copy h2 {
    font-size: 1.52rem;
  }

  .hero-copy > p {
    max-width: 25ch;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-photo {
    right: -11%;
    bottom: 0;
    width: 64%;
  }

  .quick-card {
    padding-inline: 13px;
  }

  .quick-arrow {
    display: none;
  }

  .benefits {
    gap: 16px;
  }

  .service-card {
    min-height: 300px;
  }

  .service-supplier {
    min-height: 455px;
  }

  .service-supplier .supplier-actions {
    bottom: 18px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .service-copy {
    width: 70%;
    padding-left: 24px;
  }

  .service-supplier .service-copy {
    width: 100%;
    padding: 27px 22px 0;
  }

  .service-copy h2 {
    font-size: 1.75rem;
  }

  .service-supplier .service-copy h2 {
    max-width: none;
    font-size: 1.82rem;
    line-height: 1;
    white-space: nowrap;
  }

  .service-supplier .supplier-label {
    max-width: none;
    font-size: 0.7rem;
    letter-spacing: 0.025em;
  }

  .service-supplier .supplier-heading {
    align-items: flex-start;
    margin-top: 14px;
  }

  .service-supplier .supplier-description {
    max-width: 292px;
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .supplier-action {
    min-height: 68px;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .health-action {
    min-height: 68px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .service-health {
    min-height: 380px;
  }

  .service-health .health-actions {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .health-action span {
    font-size: 0.96rem;
  }

  .supplier-action span {
    font-size: 0.86rem;
  }

  .supplier-action-more span {
    font-size: 0.92rem;
  }

  .supplier-action-more {
    column-gap: 6px;
  }

  .supplier-action-more .supplier-action-icon {
    width: 21px;
    height: 21px;
  }

  .supplier-action small {
    font-size: 0.57rem;
  }

  .supplier-action-icon {
    width: 24px;
    height: 24px;
  }

  .service-photo {
    right: -18%;
    height: 108%;
  }

  .service-scene {
    right: -17%;
    height: 104%;
  }

  .service-scene.scene-supplier {
    right: -24%;
    bottom: -11%;
    width: 116%;
    height: auto;
  }

  .scene-cars {
    right: -1%;
    height: 108%;
  }

  .photo-insurance {
    right: -22%;
    bottom: -2%;
    height: 92%;
  }

  .service-insurance .service-copy {
    width: 58%;
  }

  .service-cars .service-copy {
    width: 58%;
  }

  .service-insurance .service-action,
  .service-cars .service-action {
    width: min(260px, calc(100vw - 90px));
  }

  .photo-igreen {
    right: -12%;
    bottom: -8%;
    height: 112%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  }

  .service-igreen .service-copy {
    width: 58%;
  }

  .service-igreen .igreen-action {
    width: min(260px, calc(100vw - 90px));
  }

  .service-store .service-photo {
    right: -15%;
    bottom: -8%;
    height: 100%;
  }
}

@media (max-width: 340px) {
  .supplier-action {
    padding-inline: 6px;
  }

  .hero-card {
    min-height: 365px;
  }

  .hero-copy {
    width: min(58%, 190px);
    padding-left: 20px;
  }

  .hero-copy h2 {
    font-size: 1.28rem;
  }

  .hero-copy > p {
    max-width: 24ch;
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .hero-photo {
    bottom: 0;
    right: -12%;
    width: 66%;
  }

  .health-action {
    min-height: 64px;
    padding-inline: 8px;
  }

  .service-health .health-actions {
    right: 14px;
    left: 14px;
  }

  .health-action span {
    font-size: 0.9rem;
  }

  .service-supplier .supplier-actions {
    left: 14px;
    width: calc(100% - 28px);
  }

  .supplier-action-more span {
    font-size: 0.82rem;
  }

  .supplier-action-more {
    column-gap: 6px;
  }

  .supplier-action-more .supplier-action-icon {
    width: 20px;
    height: 20px;
  }

  .service-supplier .supplier-label {
    font-size: 0.66rem;
    letter-spacing: 0;
  }

  .service-supplier .supplier-label::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
  }

  .service-igreen .igreen-action {
    width: min(238px, calc(100vw - 82px));
    column-gap: 7px;
    padding: 11px 12px;
  }

  .service-igreen .igreen-action span {
    font-size: 0.8rem;
  }

  .service-igreen .igreen-action small {
    font-size: 0.52rem;
  }

  .service-igreen .igreen-action-icon {
    width: 20px;
    height: 20px;
  }

  .service-insurance .service-action,
  .service-store .service-action,
  .service-cars .service-action {
    width: min(238px, calc(100vw - 82px));
    column-gap: 7px;
    padding: 11px 12px;
  }

  .service-insurance .service-action strong,
  .service-store .service-action strong,
  .service-cars .service-action strong {
    font-size: 0.8rem;
  }

  .service-insurance .service-action small,
  .service-store .service-action small,
  .service-cars .service-action small {
    font-size: 0.52rem;
  }

  .service-insurance .service-action-icon,
  .service-store .service-action-icon,
  .service-cars .service-action-icon {
    width: 20px;
    height: 20px;
  }
}

.service-card {
  --card-button-height: 64px;
  --card-button-radius: 18px;
  --card-button-side: 42px;
  --card-button-bottom: 28px;
  --card-button-available: calc(100% - 84px);
  --card-button-icon: 24px;
  --card-button-column-gap: 10px;
  --card-button-padding-x: 16px;
  --card-button-title-size: 0.92rem;
  --card-button-subtitle-size: 0.62rem;
}

.supplier-action,
.igreen-action,
.service-action,
.health-action {
  min-height: var(--card-button-height);
  height: var(--card-button-height);
  padding: 0 var(--card-button-padding-x);
  border-radius: var(--card-button-radius);
}

.supplier-action,
.igreen-action,
.service-action {
  grid-template-columns: auto max-content;
  align-content: center;
  column-gap: var(--card-button-column-gap);
  width: fit-content;
  max-width: var(--card-button-available);
}

.supplier-action span,
.igreen-action > span:not(.igreen-action-icon),
.service-action strong,
.health-action span {
  font-size: var(--card-button-title-size);
  line-height: 1.05;
  white-space: nowrap;
}

.supplier-action small,
.igreen-action small,
.service-action small {
  margin-top: 5px;
  font-size: var(--card-button-subtitle-size);
  line-height: 1.05;
  white-space: nowrap;
}

.supplier-action-icon,
.supplier-action-more .supplier-action-icon,
.igreen-action-icon,
.service-action-icon {
  width: var(--card-button-icon);
  height: var(--card-button-icon);
}

.service-supplier .supplier-actions {
  grid-template-columns: max-content;
  right: auto;
  bottom: var(--card-button-bottom);
  left: var(--card-button-side);
  width: fit-content;
  max-width: var(--card-button-available);
}

.service-supplier .supplier-action {
  width: 100%;
  max-width: none;
}

.service-health .health-actions {
  right: var(--card-button-side);
  bottom: var(--card-button-bottom);
  left: var(--card-button-side);
  width: auto;
}

.health-actions {
  gap: var(--card-button-column-gap);
}

.service-igreen .igreen-action,
.service-insurance .service-action,
.service-store .service-action,
.service-cars .service-action {
  position: absolute;
  bottom: var(--card-button-bottom);
  left: var(--card-button-side);
  z-index: 3;
  width: fit-content;
  max-width: var(--card-button-available);
  margin-top: 0;
}

@media (max-width: 720px) {
  .service-card {
    --card-button-height: 60px;
    --card-button-side: 28px;
    --card-button-bottom: 22px;
    --card-button-available: calc(100% - 56px);
    --card-button-icon: 22px;
    --card-button-padding-x: 14px;
    --card-button-title-size: 0.86rem;
    --card-button-subtitle-size: 0.56rem;
  }
}

@media (max-width: 430px) {
  .service-card {
    --card-button-height: 56px;
    --card-button-side: 18px;
    --card-button-bottom: 18px;
    --card-button-available: calc(100% - 36px);
    --card-button-icon: 20px;
    --card-button-column-gap: 8px;
    --card-button-padding-x: 12px;
    --card-button-title-size: 0.8rem;
    --card-button-subtitle-size: 0.52rem;
  }
}

@media (max-width: 720px) {
  .quick-card {
    border-color: rgba(180, 255, 203, 0.32);
  }

  .service-card {
    border-color: color-mix(in srgb, var(--card-accent) 62%, white 18%);
  }

  .supplier-action {
    border-color: rgba(255, 255, 255, 0.26);
  }

  .igreen-action {
    border-color: rgba(130, 220, 85, 0.42);
  }

  .service-action {
    border-color: color-mix(in srgb, var(--card-accent) 54%, white 16%);
  }

  .service-cars .service-action {
    border-color: rgba(126, 188, 255, 0.48);
  }

  .health-action {
    border-color: rgba(144, 230, 238, 0.36);
  }
}

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