:root {
  scroll-behavior: smooth;
  --dropdown-open-dur: 250ms;
  --dropdown-close-dur: 150ms;
  --dropdown-pre-scale: 0.97;
  --dropdown-closing-scale: 0.99;
  --dropdown-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tabs-dur: 250ms;
  --tabs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tabs-text-muted: rgba(88, 94, 98, 0.92);
  --tabs-text-active: #1a1c1e;
  --tabs-bar-bg: rgba(247, 248, 248, 0.84);
  --tabs-pill-bg: #ffffff;
  --acc-expand: 250ms;
  --acc-collapse: 250ms;
  --acc-chevron: 250ms;
  --acc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --digit-dur: 380ms;
  --digit-distance: 10px;
  --digit-stagger: 54ms;
  --digit-blur: 2px;
  --digit-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --digit-dir-x: 0;
  --digit-dir-y: 1;
}

/* Reformulacao Sol: somente modalidades, processo e WhatsApp flutuante. */
#consorcios.product-section .section-heading {
  max-width: 820px;
}

#consorcios .product-explorer {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

#consorcios .tab-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  background: var(--grey-50);
  border: 0;
  border-bottom: 1px solid var(--grey-200);
  border-radius: 0;
}

#consorcios .tab-indicator {
  position: absolute;
  z-index: 0;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 0;
  background: var(--white);
  border: 1px solid var(--orange-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: width 340ms var(--ease-out), transform 340ms var(--ease-out);
  pointer-events: none;
}

#consorcios .tab-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  color: var(--grey-600);
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-standard);
}

#consorcios .tab-button svg {
  width: 18px;
  height: 18px;
}

#consorcios .tab-button:hover,
#consorcios .tab-button.is-active {
  color: var(--grey-900);
}

#consorcios .tab-button.is-active svg {
  color: var(--brand);
}

#consorcios .product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 0;
  min-height: 450px;
  padding: 0;
}

#consorcios .product-panel.is-updating .product-copy > *,
#consorcios .product-panel.is-updating .product-visual img {
  animation: product-content-in 420ms var(--ease-out) both;
}

#consorcios .product-panel.is-updating .product-copy > *:nth-child(2) { animation-delay: 35ms; }
#consorcios .product-panel.is-updating .product-copy > *:nth-child(3) { animation-delay: 65ms; }
#consorcios .product-panel.is-updating .product-copy > *:nth-child(4) { animation-delay: 95ms; }

@keyframes product-content-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#consorcios .product-copy {
  align-self: center;
  margin: 0;
  padding: 44px 48px;
}

#consorcios .product-copy h3 {
  max-width: 600px;
  margin: 16px 0 14px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

#consorcios .product-copy > p {
  max-width: 620px;
  margin: 0 0 24px;
  line-height: 1.7;
}

#consorcios .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

#consorcios .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--grey-700);
  font-size: 13px;
  line-height: 1.45;
}

#consorcios .check-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--brand);
}

#consorcios .product-visual {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  background: var(--grey-100);
}

#consorcios .product-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#consorcios .product-summary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: initial;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

#consorcios .product-summary div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--grey-200);
}

#consorcios .product-summary div:last-child {
  border-right: 0;
}

#consorcios .product-summary span,
#consorcios .product-summary strong {
  display: block;
}

#consorcios .product-summary span {
  margin-bottom: 4px;
  color: var(--grey-500);
  font-size: 9px;
}

#consorcios .product-summary strong {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--grey-900);
  font-size: 12px;
  line-height: 1.3;
}

#consorcios .benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

#consorcios .benefit-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out), border-color var(--dur-base) var(--ease-standard);
}

#consorcios .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange-300);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-standard);
}

#consorcios .benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-200);
  box-shadow: var(--shadow-lg);
}

#consorcios .benefit-card:hover::before {
  opacity: 1;
}

#consorcios .benefit-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  padding: 9px;
  color: var(--brand);
  background: var(--brand-subtle);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-md);
}

#consorcios .benefit-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
}

#consorcios .benefit-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 13px;
  line-height: 1.6;
}

#como-funciona.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--grey-900);
}

#como-funciona.section-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  background: url("assets/brand/mark-c-symbol-white.webp") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

#como-funciona .section-heading-light h2 {
  color: var(--white);
}

#como-funciona .section-heading-light > p:not(.cc-eyebrow) {
  color: var(--grey-300);
}

#como-funciona .steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#como-funciona .step-card {
  position: relative;
  min-height: 270px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--dur-slow) var(--ease-out), background-color var(--dur-slow) var(--ease-out), border-color var(--dur-slow) var(--ease-out);
}

#como-funciona .step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(242, 142, 72, 0.45);
}

#como-funciona .step-card > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--orange-300);
  font-size: 12px;
  font-weight: 800;
}

#como-funciona .step-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  padding: 10px;
  color: var(--orange-300);
  background: rgba(239, 121, 39, 0.12);
  border: 1px solid rgba(242, 142, 72, 0.25);
  border-radius: var(--radius-md);
}

#como-funciona .step-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 17px;
}

#como-funciona .step-card p {
  margin: 0;
  color: var(--grey-300);
  font-size: 13px;
  line-height: 1.65;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  height: auto;
  min-height: 50px;
  padding: 0 16px;
  color: var(--white);
  background: #20bf63;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(17, 118, 59, 0.28);
  font-size: 12px;
  font-weight: 750;
  transform: none;
  transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-standard);
}

.whatsapp-float:hover {
  color: var(--white);
  background: #159e4e;
  text-decoration: none;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: none;
}

@media (max-width: 980px) {
  #consorcios .product-panel {
    grid-template-columns: 1fr;
  }

  #consorcios .product-visual {
    min-height: 430px;
  }

  #consorcios .benefit-grid,
  #como-funciona .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  #consorcios .product-explorer {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #consorcios .tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 14px;
    padding: 7px;
    overflow: hidden;
    border: 0;
  }

  #consorcios .tab-list::-webkit-scrollbar {
    display: none;
  }

  #consorcios .tab-indicator {
    top: 7px;
    bottom: 7px;
  }

  #consorcios .tab-button {
    min-height: 46px;
    gap: 6px;
    padding-inline: 4px;
    font-size: 11px;
  }

  #consorcios .product-panel {
    overflow: hidden;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  #consorcios .product-copy {
    padding: 26px 22px 28px;
  }

  #consorcios .product-copy h3 {
    font-size: 25px;
  }

  #consorcios .check-list {
    grid-template-columns: 1fr;
  }

  #consorcios .product-visual {
    min-height: 360px;
  }

  #consorcios .product-summary {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #consorcios .product-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--grey-200);
  }

  #consorcios .product-summary div:last-child {
    border-bottom: 0;
  }

  #consorcios .product-summary span {
    margin: 0;
  }

  #consorcios .benefit-grid,
  #como-funciona .steps-grid {
    grid-template-columns: 1fr;
  }

  #consorcios .benefit-card,
  #como-funciona .step-card {
    min-height: auto;
  }

  #como-funciona .step-card > svg {
    margin-bottom: 32px;
  }

  .whatsapp-float {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    min-height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(239, 121, 39, 0.05), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(37, 42, 45, 0.045), transparent 28%),
    var(--surface-page);
}

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

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

.section {
  padding: var(--section-y) 0;
}

.subtle {
  background: var(--surface-subtle);
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--grey-900);
  border-radius: var(--radius-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(26, 28, 30, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 48px, 1400px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand-link img {
  display: block;
  width: 149px;
  height: auto;
  max-width: 44vw;
}

@media (min-width: 821px) {
  .brand-link {
    transform: translateX(-10px);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(247, 248, 248, 0.72);
  border: 1px solid rgba(225, 228, 229, 0.72);
  border-radius: var(--radius-lg);
}

.site-nav a {
  padding: 10px 11px;
  border-radius: var(--radius-md);
  color: var(--grey-600);
  font: var(--fw-semibold) 12.5px/1 var(--font-sans);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--grey-900);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard), filter var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}

.button {
  position: relative;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font: var(--fw-bold) 14px/1 var(--font-sans);
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(26, 28, 30, 0.06);
}

.button:hover {
  filter: brightness(0.95);
  text-decoration: none;
}

.button:active,
.icon-button:active {
  transform: scale(0.97);
}

.button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button-primary {
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, #ff8b36 100%);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.button-primary.glow-border::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 204, 0.22),
    0 0 18px rgba(255, 143, 65, 0.32);
  opacity: 0.72;
  pointer-events: none;
  animation: borderGlowPulse 2600ms ease-in-out infinite;
}

.button-outline {
  color: var(--grey-900);
  background: var(--white);
  border-color: var(--border-default);
  box-shadow: var(--shadow-xs);
}

.button-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.button-full {
  width: 100%;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  color: var(--grey-700);
  background: var(--white);
  border-color: var(--border-subtle);
}

.whatsapp-header,
.instagram-header,
.whatsapp-float {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.75);
  box-shadow:
    0 14px 30px rgba(37, 211, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.whatsapp-header:hover,
.instagram-header:hover,
.whatsapp-float:hover {
  background: #20bf5a;
  box-shadow:
    0 18px 38px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  text-decoration: none;
  transform: translateY(-1px);
}

.whatsapp-header:focus-visible,
.instagram-header:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 4px;
}

.whatsapp-header svg,
.whatsapp-float svg {
  width: 60%;
  height: 60%;
  fill: currentColor;
}

.whatsapp-header {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.instagram-header {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
  border-color: rgba(225, 48, 108, 0.45);
  box-shadow: 0 14px 30px rgba(214, 41, 118, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.instagram-header:hover {
  background: linear-gradient(135deg, #f5bc25 0%, #d91d68 48%, #5120bc 100%);
  box-shadow: 0 18px 38px rgba(214, 41, 118, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.instagram-header svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  transform: none;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 710px;
  display: flex;
  align-items: center;
  background: #f7f8f8;
}

@media (min-width: 1440px) {
  .hero {
    width: calc(100% - 280px);
    margin-inline: 140px;
    margin-bottom: 1px;
    box-shadow: 0 0 0 100vmax #f7f8f8;
    clip-path: inset(0 -100vmax);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 68% 20%, rgba(239, 121, 39, 0.18), transparent 32%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(8vw, 96px);
  background: linear-gradient(90deg, rgba(247, 248, 248, 0), #f7f8f8 86%);
  pointer-events: none;
}

.image-hero {
  isolation: isolate;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f7f8f8 0%, rgba(247, 248, 248, 0.92) 20%, rgba(247, 248, 248, 0.32) 36%, rgba(247, 248, 248, 0) 50%),
    linear-gradient(180deg, rgba(247, 248, 248, 0) 0%, rgba(247, 248, 248, 0) 84%, rgba(247, 248, 248, 0.58) 100%);
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-bg-image.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@keyframes heroMobileImageDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  100% {
    transform: translate3d(-12px, 8px, 0) scale(1.075);
  }
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 248, 248, 0.96) 0%, rgba(247, 248, 248, 0.84) 24%, rgba(247, 248, 248, 0.18) 44%, rgba(247, 248, 248, 0) 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1700px);
  max-width: calc(100vw - 48px);
  display: grid;
  grid-template-columns: minmax(0, 590px) 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 710px;
  padding: 48px 0 46px;
}

.hero-copy {
  width: min(100%, 590px);
  min-width: 0;
  max-width: 590px;
}

.hero h1 {
  max-width: 590px;
  margin: var(--space-4) 0 var(--space-5);
  color: var(--grey-900);
  font: var(--fw-black) 58px/1.02 var(--font-display);
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--brand);
}

.hero-text {
  max-width: 620px;
  margin: 0 0 var(--space-8);
  color: var(--grey-600);
  font: var(--fw-regular) 19px/1.65 var(--font-sans);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-variant-controls {
  position: absolute;
  left: 72%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  margin: 0;
  padding: 11px 14px;
  overflow: visible;
  background: rgba(26, 28, 30, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(26, 28, 30, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.hero-variant-option {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(26, 28, 30, 0.32);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transition:
    width 260ms ease,
    background 260ms ease,
    transform 260ms ease,
    opacity 260ms ease;
}

.hero-variant-option:hover,
.hero-variant-option:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  transform: scale(1.12);
}

.hero-variant-option:focus-visible {
  outline: 3px solid rgba(239, 121, 39, 0.42);
  outline-offset: 4px;
}

.hero-variant-option.is-active {
  width: 30px;
  background: rgba(255, 255, 255, 0.82);
  transform: none;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.trust-row div {
  padding-left: var(--space-4);
  border-left: 3px solid var(--brand);
}

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

.trust-row strong {
  color: var(--grey-900);
  font: var(--fw-bold) 15px/1.35 var(--font-sans);
}

.trust-row span {
  margin-top: var(--space-1);
  color: var(--grey-500);
  font: var(--text-body-sm);
}

.hero .trust-row {
  display: none;
}

.hero-mini-card {
  width: min(100%, 360px);
  margin-top: var(--space-8);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(225, 228, 229, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

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

.hero-mini-card span {
  color: var(--grey-500);
  font: var(--text-caption);
}

.hero-mini-card strong {
  margin: var(--space-1) 0;
  color: var(--brand);
  font: var(--fw-black) 28px/1.05 var(--font-sans);
}

.hero-mini-card small {
  color: var(--grey-500);
  font: var(--text-caption);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  background: linear-gradient(145deg, var(--white), var(--orange-50));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.hero-mark {
  position: relative;
  width: min(72%, 360px);
  filter: drop-shadow(0 22px 34px rgba(26, 28, 30, 0.12));
}

.floating-panel {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  color: var(--grey-800);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-panel strong,
.floating-panel span {
  display: block;
}

.floating-panel strong {
  font: var(--fw-bold) 14px/1.3 var(--font-sans);
}

.floating-panel span {
  max-width: 220px;
  color: var(--grey-500);
  font: var(--text-caption);
}

.panel-credit {
  left: 0;
  bottom: 70px;
}

.panel-plan {
  right: 6px;
  top: 78px;
  display: block;
}

.panel-plan span {
  margin-top: var(--space-1);
  color: var(--brand);
  font: var(--fw-black) 24px/1 var(--font-sans);
}

.panel-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--orange-100);
  border-radius: var(--radius-md);
}

.proof-band {
  position: relative;
  padding: var(--space-16) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9f9 100%);
}

.proof-wrap {
  position: relative;
  z-index: 1;
}

.proof-slogan {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: var(--space-4) var(--space-4) var(--space-5);
  text-align: center;
}

.proof-slogan strong {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
  max-width: 100%;
  color: var(--grey-900);
  font: var(--fw-black) clamp(32px, 3.8vw, 64px)/1.22 var(--font-display);
  text-align: center;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.proof-slogan strong > span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
}

.proof-band.is-visible .proof-slogan strong {
  animation: proofTitleIn 1550ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.proof-band.is-visible .proof-slogan strong > span {
  animation: proofLineReveal 1900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.proof-band.is-visible .proof-slogan strong > span:first-child {
  animation-delay: 180ms;
}

.proof-slogan strong > .brand-line {
  color: var(--brand);
  text-shadow: 0 18px 40px rgba(239, 121, 39, 0.16);
}

.proof-band.is-visible .proof-slogan strong > .brand-line {
  animation-delay: 820ms;
}

@keyframes proofTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes proofLineReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlowPulse {
  0%,
  100% {
    opacity: 0.52;
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 204, 0.12),
      0 0 14px rgba(239, 121, 39, 0.1);
  }
  50% {
    opacity: 0.9;
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 204, 0.28),
      0 0 28px rgba(239, 121, 39, 0.24);
  }
}

@keyframes t-digit-pop-in {
  0% {
    transform: translate(
      calc(var(--digit-distance) * var(--digit-dir-x)),
      calc(var(--digit-distance) * var(--digit-dir-y))
    ) scale(0.94);
    opacity: 0;
    filter: blur(var(--digit-blur));
  }
  62% {
    transform: translate(0, -1px) scale(1.02);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes counterFinalPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 0 0 1px rgba(239, 121, 39, 0.12),
      0 12px 28px rgba(239, 121, 39, 0.14);
  }
  42% {
    transform: translateY(-2px) scale(1.08);
    box-shadow:
      inset 0 0 0 1px rgba(239, 121, 39, 0.2),
      0 18px 42px rgba(239, 121, 39, 0.24);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 0 0 1px rgba(239, 121, 39, 0.12),
      0 12px 28px rgba(239, 121, 39, 0.14);
  }
}

@keyframes counterCountingGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      inset 0 0 0 1px rgba(239, 121, 39, 0.12),
      0 12px 28px rgba(239, 121, 39, 0.14);
  }
  50% {
    transform: translateY(-1px) scale(1.035);
    box-shadow:
      inset 0 0 0 1px rgba(239, 121, 39, 0.2),
      0 18px 44px rgba(239, 121, 39, 0.22);
  }
}

.t-digit-group {
  display: inline-flex;
  align-items: baseline;
  min-width: 1.2em;
  justify-content: center;
}
.t-digit {
  display: inline-block;
  will-change: transform, opacity, filter;
}
.t-digit-group.is-animating .t-digit {
  animation: t-digit-pop-in var(--digit-dur) var(--digit-ease) both;
}
.t-digit-group.is-animating .t-digit[data-stagger="1"] {
  animation-delay: var(--digit-stagger);
}
.t-digit-group.is-animating .t-digit[data-stagger="2"] {
  animation-delay: calc(var(--digit-stagger) * 2);
}

@media (prefers-reduced-motion: reduce) {
  .proof-slogan strong,
  .proof-slogan strong > span {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .button-primary.glow-border::before,
  .testimonial-card.glow-border::after {
    animation: none;
  }

  .t-dropdown,
  .t-tabs-pill,
  .t-tab,
  .t-acc-panel,
  .t-acc-panel-inner,
  .t-acc-chevron {
    transition: none !important;
  }

  .t-digit-group .t-digit {
    animation: none !important;
  }

  .contemplados-counter.is-complete {
    animation: none !important;
  }

  .contemplados-counter.is-counting {
    animation: none !important;
  }

  .contemplados-cta {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1280px) {
  .proof-slogan strong {
    flex-wrap: nowrap;
  }
}

.advantages-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f8f9f9 100%);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.advantage-card {
  position: relative;
  min-height: 245px;
  padding: var(--space-6);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(26, 28, 30, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 130px;
  aspect-ratio: 1;
  background: rgba(239, 121, 39, 0.1);
  border-radius: 999px;
}

.advantage-card:hover {
  border-color: rgba(239, 121, 39, 0.38);
  box-shadow: 0 24px 58px rgba(26, 28, 30, 0.12);
  transform: translateY(-4px);
}

.advantage-card svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--brand);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-md);
}

.advantage-card h3 {
  margin: var(--space-5) 0 var(--space-3);
  color: var(--grey-900);
  font: var(--fw-extrabold) 20px/1.18 var(--font-sans);
}

.advantage-card p {
  position: relative;
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body-sm);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

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

.section-heading h2,
.contact-panel h2 {
  margin: var(--space-3) 0 var(--space-4);
  color: var(--grey-900);
  font: var(--fw-extrabold) 46px/1.1 var(--font-display);
  letter-spacing: 0;
}

.cc-eyebrow {
  letter-spacing: 0;
}

.section-heading p:not(.cc-eyebrow),
.contact-panel p {
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body-lg);
}

.tabs-shell,
.simulator-card,
.testimonial-card,
.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(225, 228, 229, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(26, 28, 30, 0.09);
}

.tabs-shell {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.tabs-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), rgba(239, 121, 39, 0.18), transparent);
  pointer-events: none;
}

.tab-list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-2);
  margin: var(--space-6) var(--space-6) 0;
  padding: 6px;
  background: rgba(247, 248, 248, 0.84);
  border: 1px solid rgba(225, 228, 229, 0.76);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  scrollbar-width: none;
}

.t-tabs-pill {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 0;
  width: 0;
  height: calc(100% - 12px);
  background: var(--tabs-pill-bg);
  border: 1px solid rgba(239, 121, 39, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(26, 28, 30, 0.08);
  transform: translateX(0);
  transition:
    transform var(--tabs-dur) var(--tabs-ease),
    width var(--tabs-dur) var(--tabs-ease);
  will-change: transform, width;
  pointer-events: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  position: relative;
  z-index: 1;
  min-width: 118px;
  padding: 13px 18px;
  color: var(--grey-500);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  font: var(--fw-bold) 14px/1 var(--font-sans);
  transition:
    color var(--tabs-dur) var(--tabs-ease);
}

.tab-button::after {
  content: none !important;
  display: none !important;
}

.tab-button.is-active {
  color: var(--grey-900);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.tab-button.is-active::before {
  content: none !important;
  display: none !important;
}

.product-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: var(--space-10);
  padding: var(--space-9) var(--space-10) var(--space-10);
}

.product-copy {
  margin: 12px 16px 30px 17px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-pill);
  font: var(--fw-bold) 12px/1 var(--font-sans);
}

.product-copy h3 {
  margin: var(--space-4) 0 var(--space-3);
  color: var(--grey-900);
  font: var(--fw-extrabold) 30px/1.16 var(--font-sans);
}

.product-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  padding: 0;
  margin: var(--space-6) 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  color: var(--grey-700);
  font: var(--text-body-sm);
}

.check-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.product-summary {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: var(--space-4);
  margin: 15px 22px 21px 0;
  padding: var(--space-6);
  background:
    radial-gradient(circle at 95% 8%, rgba(239, 121, 39, 0.18), transparent 30%),
    linear-gradient(135deg, #f9faf9, #ffffff);
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(26, 28, 30, 0.06);
}

.summary-row {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.summary-row span {
  color: var(--grey-500);
  font: var(--text-caption);
}

.summary-row strong {
  margin-top: var(--space-1);
  color: var(--grey-900);
  font: var(--fw-extrabold) 20px/1.25 var(--font-sans);
}

.simulator-grid,
.testimonial-layout,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: var(--space-12);
  align-items: start;
}

#simulador {
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 121, 39, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8f8 100%);
}

.notice {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-top: var(--space-6);
  padding: var(--space-4);
  color: var(--grey-700);
  background:
    linear-gradient(135deg, var(--orange-50), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(239, 121, 39, 0.22);
  border-radius: var(--radius-lg);
  font: var(--text-body-sm);
  box-shadow: var(--shadow-xs);
}

.notice svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.simulator-card,
.contact-form {
  padding: var(--space-8);
}

.simulator-card {
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 210px;
  aspect-ratio: 1;
  background: rgba(239, 121, 39, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

label,
.form-step label,
.range-row label {
  display: grid;
  gap: var(--space-2);
  color: var(--grey-700);
  font: var(--fw-bold) 13px/1.2 var(--font-sans);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--grey-900);
  background: var(--white);
  border: 1px solid rgba(207, 212, 215, 0.9);
  border-radius: var(--radius-md);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: rgba(239, 121, 39, 0.62);
  box-shadow: 0 0 0 4px rgba(239, 121, 39, 0.12);
}

.select-native-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 3;
}

.t-dropdown {
  transform-origin: top left;
  transform: scale(var(--dropdown-pre-scale));
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--dropdown-open-dur) var(--dropdown-ease),
    opacity var(--dropdown-open-dur) var(--dropdown-ease);
  will-change: transform, opacity;
}

.t-dropdown[data-origin="top-right"] { transform-origin: top right; }
.t-dropdown[data-origin="top-center"] { transform-origin: top center; }
.t-dropdown[data-origin="bottom-left"] { transform-origin: bottom left; }
.t-dropdown[data-origin="bottom-center"] { transform-origin: bottom center; }
.t-dropdown[data-origin="bottom-right"] { transform-origin: bottom right; }

.t-dropdown.is-open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.t-dropdown.is-closing {
  transform: scale(var(--dropdown-closing-scale));
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--dropdown-close-dur) var(--dropdown-ease),
    opacity var(--dropdown-close-dur) var(--dropdown-ease);
}

.custom-select-trigger {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0 16px 0 18px;
  color: var(--grey-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.9));
  border: 1px solid rgba(207, 212, 215, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(26, 28, 30, 0.04);
  cursor: pointer;
  font: var(--fw-semibold) 16px/1 var(--font-sans);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(239, 121, 39, 0.52);
  box-shadow:
    0 0 0 4px rgba(239, 121, 39, 0.1),
    0 14px 30px rgba(26, 28, 30, 0.07);
}

.custom-select-trigger:focus-visible {
  outline: 0;
  border-color: rgba(239, 121, 39, 0.68);
  box-shadow:
    0 0 0 4px rgba(239, 121, 39, 0.14),
    0 14px 30px rgba(26, 28, 30, 0.07);
}

.custom-select-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 4px;
  padding: 7px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(225, 228, 229, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 52px rgba(26, 28, 30, 0.14);
}

.custom-select-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: var(--grey-700);
  background: transparent;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font: var(--fw-semibold) 15px/1 var(--font-sans);
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option.is-active {
  color: var(--grey-900);
  background: var(--orange-50);
}

.custom-select-option.is-active::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(239, 121, 39, 0.14);
}

textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

input[type="range"] {
  height: 4px;
  min-height: 4px;
  padding: 0;
  accent-color: var(--brand);
}

.form-step,
.range-row,
.lead-grid,
.simulator-card label,
.contact-form label {
  margin-bottom: var(--space-5);
}

.range-row > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.range-row strong {
  color: var(--brand);
  font: var(--fw-black) 20px/1 var(--font-sans);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.result-box {
  margin: var(--space-6) 0;
  padding: var(--space-5);
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 121, 39, 0.2), transparent 34%),
    linear-gradient(135deg, #1a1d1f, #252a2d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 46px rgba(26, 28, 30, 0.18);
}

.result-box span,
.result-box strong,
.result-box small {
  display: block;
}

.result-box span,
.result-box small {
  color: var(--grey-300);
}

.result-box span {
  font: var(--text-caption);
}

.result-box strong {
  margin: var(--space-2) 0;
  color: var(--white);
  font: var(--fw-black) 34px/1.05 var(--font-sans);
}

.result-box small {
  font: var(--text-caption);
}

.form-feedback {
  min-height: 22px;
  margin: var(--space-4) 0 0;
  color: var(--success);
  font: var(--fw-bold) 13px/1.4 var(--font-sans);
}

.form-consent {
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--grey-600);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--brand);
}

.form-consent a {
  color: var(--orange-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal-note {
  margin: 10px 0 0;
  color: var(--grey-500);
  font-size: 11px;
  line-height: 1.55;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.steps-grid article {
  position: relative;
  padding: var(--space-6);
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fbfbfb);
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(26, 28, 30, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.steps-grid article:hover {
  border-color: rgba(239, 121, 39, 0.28);
  box-shadow: 0 24px 56px rgba(26, 28, 30, 0.11);
  transform: translateY(-4px);
}

.steps-grid span {
  color: var(--orange-200);
  font: var(--fw-black) 42px/1 var(--font-sans);
}

.steps-grid h3 {
  margin: var(--space-4) 0 var(--space-2);
  color: var(--grey-900);
  font: var(--fw-bold) 18px/1.28 var(--font-sans);
}

.steps-grid p {
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body-sm);
}

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

.testimonial-card {
  position: relative;
  padding: var(--space-8);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 230px;
  aspect-ratio: 1;
  background: url("assets/brand/mark-c-symbol.webp") center/contain no-repeat;
  opacity: 0.08;
}

.testimonial-card.glow-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 121, 39, 0.24);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 181, 126, 0.08),
    0 0 34px rgba(239, 121, 39, 0.1);
  opacity: 0.72;
  pointer-events: none;
  animation: borderGlowPulse 4200ms ease-in-out infinite;
}

.quote-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--orange-50);
  border-radius: var(--radius-md);
}

.testimonial-card p {
  position: relative;
  margin: var(--space-6) 0;
  color: var(--grey-800);
  font: var(--fw-semibold) 23px/1.5 var(--font-sans);
}

.testimonial-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.testimonial-controls strong {
  color: var(--grey-600);
  font: var(--fw-bold) 14px/1.2 var(--font-sans);
  text-align: center;
}

.contemplados-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.contemplados-section::before {
  content: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 28, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 30, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contemplados-section .container {
  position: relative;
  z-index: 1;
}

.contemplados-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(100%, 1040px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(26, 28, 30, 0.08);
}

.contemplados-hero-card,
.contemplado-card,
.contemplados-story {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(26, 28, 30, 0.09);
}

.contemplados-hero-card {
  min-height: 430px;
  margin: 0;
  background: var(--grey-900);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contemplados-hero-card img,
.contemplado-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contemplados-hero-card:hover img,
.contemplado-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.contemplados-hero-card::after,
.contemplado-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 28, 30, 0) 42%, rgba(26, 28, 30, 0.78) 100%);
  pointer-events: none;
}

.contemplado-card::after {
  background:
    linear-gradient(180deg, rgba(26, 28, 30, 0) 44%, rgba(26, 28, 30, 0.16) 63%, rgba(26, 28, 30, 0.72) 100%),
    linear-gradient(90deg, rgba(26, 28, 30, 0.16), transparent 42%);
}

.contemplados-hero-card figcaption,
.contemplado-card div {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 1;
  color: var(--white);
}

.contemplados-hero-card span,
.contemplado-card span {
  display: inline-flex;
  margin-bottom: var(--space-2);
  color: #ffd9bd;
  font: var(--fw-bold) 12px/1 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}

.contemplados-hero-card strong,
.contemplado-card strong {
  display: block;
  max-width: 560px;
  font: var(--fw-extrabold) 28px/1.1 var(--font-display);
}

.contemplados-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.8vw, 36px);
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 121, 39, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  border: 0;
  border-left: 1px solid rgba(225, 228, 229, 0.82);
  border-radius: 0;
  box-shadow: none;
}

.contemplados-story h3 {
  margin: var(--space-4) 0;
  color: var(--grey-900);
  font: var(--fw-extrabold) clamp(28px, 2.35vw, 32px)/1.08 var(--font-display);
}

.contemplados-story p {
  margin: 0 0 var(--space-3);
  color: var(--grey-600);
  font: var(--fw-regular) 16px/1.52 var(--font-sans);
}

.contemplados-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.contemplados-stats div {
  padding: var(--space-3) var(--space-4);
  background: rgba(247, 248, 248, 0.82);
  border: 1px solid rgba(225, 228, 229, 0.88);
  border-radius: var(--radius-md);
}

.contemplados-stats strong,
.contemplados-stats span {
  display: block;
}

.contemplados-stats strong {
  color: var(--brand);
  font: var(--fw-black) 28px/1 var(--font-sans);
}

.contemplados-stats span {
  margin-top: var(--space-2);
  color: var(--grey-600);
  font: var(--text-caption);
}

.contemplados-carousel {
  --coverflow-duration: 520ms;
  --coverflow-settle-duration: 420ms;
  --coverflow-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --coverflow-settle-ease: cubic-bezier(0.2, 0.9, 0.16, 1);
  position: relative;
  margin-top: 74px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contemplados-carousel-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-bottom: clamp(18px, 3vw, 34px);
  padding-inline: var(--space-4);
  text-align: center;
}

.contemplados-carousel-head > div {
  width: min(100%, 820px);
}

.contemplados-carousel-head h3 {
  max-width: 780px;
  margin: var(--space-4) auto 0;
  color: var(--grey-950);
  font: var(--fw-extrabold) clamp(30px, 3.15vw, 48px)/1.04 var(--font-display);
}

.contemplados-carousel-head p {
  max-width: 640px;
  margin: var(--space-3) auto 0;
  color: var(--grey-600);
  font: var(--text-body);
}

.contemplados-carousel-head .tag {
  background: rgba(239, 121, 39, 0.08);
  border-color: rgba(239, 121, 39, 0.18);
  box-shadow: 0 12px 30px rgba(239, 121, 39, 0.08);
}

.contemplados-carousel-actions {
  display: none;
  gap: var(--space-2);
  flex: 0 0 auto;
}

.contemplados-carousel-actions .icon-button {
  width: 46px;
  height: 46px;
  color: var(--grey-900);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(225, 228, 229, 0.95);
  box-shadow: 0 18px 40px rgba(26, 28, 30, 0.1);
  backdrop-filter: blur(14px);
}

.contemplados-carousel-actions .icon-button:hover {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

.contemplados-gallery {
  position: relative;
  height: clamp(462px, 35vw, 540px);
  margin-top: var(--space-4);
  overflow: hidden;
  background: var(--white);
  border-radius: calc(var(--radius-lg) + 4px);
  cursor: grab;
  perspective: 1500px;
  perspective-origin: 50% 42%;
  touch-action: pan-y;
  user-select: none;
  isolation: isolate;
}

.contemplados-gallery.is-dragging {
  cursor: grabbing;
}

.contemplados-gallery.is-dragging .contemplado-card,
.contemplados-gallery[data-dragging="true"] .contemplado-card {
  transition: none;
}

.contemplados-gallery[data-settling="true"] .contemplado-card {
  transition:
    opacity var(--coverflow-settle-duration) var(--coverflow-settle-ease),
    filter var(--coverflow-settle-duration) var(--coverflow-settle-ease),
    transform var(--coverflow-settle-duration) var(--coverflow-settle-ease),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.contemplados-gallery::before,
.contemplados-gallery::after {
  content: none;
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 8;
  width: min(14vw, 170px);
  background: linear-gradient(90deg, rgba(247, 248, 248, 0.98), rgba(247, 248, 248, 0));
  pointer-events: none;
}

.contemplados-gallery::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(247, 248, 248, 0.98), rgba(247, 248, 248, 0));
}

.contemplados-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
}

.contemplado-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(26vw, 380px);
  height: min(calc(100% - 40px), 500px);
  background: #111315;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  opacity: var(--coverflow-opacity, 0);
  filter: brightness(0.94) saturate(0.92) contrast(0.985) blur(var(--coverflow-blur, 0.55px));
  transform:
    translate(-50%, -50%)
    translateX(var(--coverflow-x, 0px))
    translateZ(var(--coverflow-z, -300px))
    rotateY(var(--coverflow-rotate, 0deg))
    scale(var(--coverflow-scale, 0.68));
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transition:
    opacity var(--coverflow-duration) var(--coverflow-ease),
    filter var(--coverflow-duration) var(--coverflow-ease),
    transform var(--coverflow-duration) var(--coverflow-ease),
    border-color 320ms ease,
    box-shadow 320ms ease;
  will-change: transform, opacity;
}

.contemplado-card:focus-visible {
  outline: 3px solid rgba(239, 121, 39, 0.48);
  outline-offset: 5px;
}

.contemplado-card:not(.is-active) {
  border-color: rgba(26, 28, 30, 0.14);
  box-shadow: 0 18px 36px -24px rgba(26, 28, 30, 0.28);
}

.contemplado-card img {
  filter: saturate(1.02) contrast(1);
  pointer-events: none;
  -webkit-user-drag: none;
}

.contemplado-card.is-center,
.contemplado-card.is-active {
  --coverflow-x: 0px;
  --coverflow-z: 72px;
  --coverflow-rotate: 0deg;
  --coverflow-scale: 1;
  --coverflow-opacity: 1;
  filter: brightness(1.06) saturate(1.1) contrast(1.025) blur(0);
  pointer-events: auto;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.58);
}

.contemplado-card.is-center img,
.contemplado-card.is-active img {
  filter: saturate(1.04) contrast(1);
}

.contemplado-card strong {
  max-width: 520px;
  font-size: clamp(23px, 2vw, 34px);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.contemplado-card span {
  padding: 8px 10px;
  margin-bottom: var(--space-3);
  color: var(--white);
  background: rgba(239, 121, 39, 0.88);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(239, 121, 39, 0.22);
}

.contemplado-card div {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.74), rgba(17, 19, 21, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contemplados-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(34px, 3vw, 42px);
  margin-bottom: var(--space-8);
}

.contemplados-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 28, 30, 0.22);
  cursor: pointer;
  transition:
    width 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    opacity 220ms ease;
}

.contemplados-dot.is-active {
  width: 30px;
  background: var(--brand);
}

.contemplados-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: center;
  margin-top: clamp(64px, 5vw, 84px);
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(239, 121, 39, 0.12), transparent 24%),
    radial-gradient(circle at 92% 100%, rgba(239, 121, 39, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(225, 228, 229, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(26, 28, 30, 0.045);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contemplados-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    linear-gradient(115deg, rgba(239, 121, 39, 0.12), transparent 28%, transparent 68%, rgba(239, 121, 39, 0.1));
  opacity: 0.72;
  pointer-events: none;
}

.contemplados-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -86px;
  top: -112px;
  border-radius: 999px;
  background: rgba(239, 121, 39, 0.08);
  pointer-events: none;
}

.contemplados-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contemplados-cta:hover {
  border-color: rgba(239, 121, 39, 0.26);
  box-shadow: 0 18px 38px rgba(26, 28, 30, 0.065);
}

.contemplado-card:not(.is-active) strong {
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.08;
}

.contemplado-card.is-active strong {
  font-size: clamp(25px, 2.15vw, 36px);
  line-height: 1.06;
}

.contemplados-cta > * {
  position: relative;
  z-index: 1;
}

.contemplados-cta h3 {
  max-width: 900px;
  margin: var(--space-3) 0 var(--space-3);
  color: var(--grey-900);
  font: var(--fw-black) clamp(32px, 4.8vw, 64px)/1.02 var(--font-display);
  letter-spacing: 0;
}

.contemplados-cta p:not(.cc-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body);
}

.contemplados-counter {
  display: inline-flex;
  position: relative;
  min-width: 1.86em;
  margin: 0 0.08em;
  padding: 0.02em 0.16em 0.08em;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: linear-gradient(180deg, rgba(239, 121, 39, 0.1), rgba(239, 121, 39, 0.02));
  border-radius: 0.28em;
  box-shadow:
    inset 0 0 0 1px rgba(239, 121, 39, 0.12),
    0 12px 28px rgba(239, 121, 39, 0.14);
  text-shadow: 0 16px 34px rgba(239, 121, 39, 0.2);
  white-space: nowrap;
}

.contemplados-counter::after {
  content: "";
  position: absolute;
  inset: 12% 8% auto;
  height: 38%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.contemplados-counter.is-complete {
  animation: counterFinalPulse 620ms cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.contemplados-counter.is-counting {
  animation: none;
}

.contemplados-cta-actions {
  display: grid;
  gap: var(--space-3);
  min-width: min(100%, 270px);
}

.contemplados-cta-actions .button {
  justify-content: center;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .contemplados-track,
  .contemplados-cta {
    transition: none !important;
  }

  .contemplados-cta {
    opacity: 1;
    transform: none;
  }

  .contemplados-counter.is-complete {
    animation: none !important;
  }

  .contemplados-counter.is-counting {
    animation: none !important;
  }
}

.accordion {
  display: grid;
  gap: var(--space-3);
}

.accordion-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(225, 228, 229, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.accordion-item:hover {
  border-color: rgba(239, 121, 39, 0.26);
  box-shadow: 0 12px 30px rgba(26, 28, 30, 0.07);
  transform: translateY(-1px);
}

.accordion-head {
  position: relative;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  color: var(--grey-900);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-head span {
  color: var(--grey-900);
  font: var(--fw-bold) 16px/1.3 var(--font-sans);
}

.accordion-head svg {
  flex: 0 0 auto;
  color: var(--brand);
}

.t-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--acc-collapse) var(--acc-ease);
}

.t-acc[data-open="true"] .t-acc-panel {
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--acc-expand) var(--acc-ease);
}

.t-acc-panel-inner {
  overflow: hidden;
  opacity: 0;
  filter: blur(2px);
  transition:
    opacity var(--acc-collapse) var(--acc-ease),
    filter var(--acc-collapse) var(--acc-ease);
}

.t-acc[data-open="true"] .t-acc-panel-inner {
  opacity: 1;
  filter: blur(0);
  transition:
    opacity var(--acc-expand) var(--acc-ease),
    filter var(--acc-expand) var(--acc-ease);
}

.accordion-panel-inner {
  padding: 0 var(--space-5) var(--space-5);
}

.accordion-panel-inner p {
  margin: 0;
  color: var(--grey-600);
  font: var(--text-body-sm);
}

.accordion-item.is-open {
  border-color: var(--orange-200);
}

.t-acc-chevron {
  display: inline-flex;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform var(--acc-chevron) var(--acc-ease);
}

.t-acc-chevron path {
  vector-effect: non-scaling-stroke;
}

.t-acc[data-open="true"] .t-acc-chevron {
  transform: scaleY(-1);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(239, 121, 39, 0.2), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #17191a, #24282b 56%, #151718);
}

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

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel p:not(.cc-eyebrow) {
  color: var(--grey-300);
}

.contact-methods {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--white);
  font: var(--fw-bold) 15px/1 var(--font-sans);
}

.contact-methods svg {
  color: var(--brand);
}

.contact-form {
  color: var(--grey-900);
  box-shadow: var(--shadow-xl);
}

.contact-form .button {
  width: max-content;
  min-width: 190px;
}

.site-footer {
  padding: var(--space-10) 0;
  color: var(--grey-400);
  background: var(--grey-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.footer-grid img {
  width: 210px;
  height: auto;
  margin-bottom: var(--space-4);
}

.footer-grid p,
.footer-grid small {
  margin: 0;
  color: var(--grey-400);
  font: var(--text-body-sm);
  line-height: 1.65;
}

.footer-grid nav {
  display: grid;
  gap: var(--space-3);
}

.footer-grid a {
  color: var(--grey-300);
  font: var(--fw-semibold) 14px/1 var(--font-sans);
}

.legal-page {
  min-height: 100vh;
  background: var(--surface-subtle);
}

.legal-header {
  position: static;
}

.legal-header .header-inner {
  justify-content: space-between;
}

.legal-header .brand-link {
  transform: none;
}

.legal-main {
  padding: 64px 0 96px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.legal-card h1 {
  margin: 12px 0 16px;
  color: var(--grey-900);
  font: var(--fw-black) clamp(34px, 6vw, 54px)/1.05 var(--font-display);
}

.legal-card h2 {
  margin: 36px 0 10px;
  color: var(--grey-900);
  font: var(--fw-extrabold) 22px/1.25 var(--font-display);
}

.legal-card p,
.legal-card li {
  color: var(--grey-700);
  font: var(--text-body);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-updated {
  color: var(--grey-500);
  font-size: 13px;
}

.legal-contact {
  margin-top: 36px;
  padding: 20px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-lg);
}

@media (max-width: 560px) {
  .legal-main {
    padding: 24px 0 64px;
  }

  .legal-card {
    border-radius: var(--radius-xl);
  }
}

@media (max-width: 1040px) {
  .header-cta,
  .header-socials {
    display: none;
  }

  .hero-grid,
  .simulator-grid,
  .testimonial-layout,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-grid {
    min-height: 680px;
  }

  .hero-bg-image {
    object-position: 64% center;
  }

  .hero-bg-shade {
    background: linear-gradient(90deg, rgba(247, 248, 248, 0.98) 0%, rgba(247, 248, 248, 0.86) 38%, rgba(247, 248, 248, 0.12) 100%);
  }

  .hero-visual {
    min-height: 440px;
  }

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

  .contemplados-feature,
  .contemplados-cta {
    grid-template-columns: 1fr;
  }

  .contemplados-story {
    border-top: 1px solid rgba(225, 228, 229, 0.82);
    border-left: 0;
  }

  .contemplado-card {
    flex-basis: min(78%, 600px);
  }

  .contemplados-cta-actions {
    width: 100%;
    max-width: 440px;
  }

  .contemplados-hero-card {
    min-height: 420px;
  }

  .proof-slogan strong {
    flex-wrap: wrap;
    font-size: clamp(30px, 5vw, 48px);
  }
}

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

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: var(--space-3);
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 78% 12%, rgba(239, 121, 39, 0.12), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  }

  .hero-grid {
    min-height: auto;
    padding: 22px 0 38px;
  }

  .hero-bg-carousel {
    inset: 0;
    height: auto;
    overflow: hidden;
  }

  .hero-bg-carousel::after {
    background:
      linear-gradient(90deg, rgba(251, 251, 250, 0.94) 0%, rgba(251, 251, 250, 0.72) 50%, rgba(251, 251, 250, 0.24) 100%),
      linear-gradient(180deg, rgba(251, 251, 250, 0.48) 0%, rgba(251, 251, 250, 0.22) 48%, rgba(251, 251, 250, 0.78) 100%);
  }

  .hero-bg-image {
    object-fit: cover;
    object-position: 68% center;
    opacity: 0;
    filter: saturate(1.05) contrast(1.03);
    transform: translate3d(14px, 0, 0) scale(1.03);
  }

  .hero-bg-image.is-active {
    opacity: 0.9;
    animation: heroMobileImageDrift 9s ease-in-out infinite alternate;
  }

  .hero-bg-shade {
    background:
      radial-gradient(circle at 76% 76%, rgba(239, 121, 39, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(251, 251, 250, 0.12) 0%, rgba(251, 251, 250, 0.02) 46%, rgba(251, 251, 250, 0.46) 100%);
  }

  .hero-copy {
    position: relative;
    padding: 16px 0 18px;
  }

  .hero h1 {
    margin: var(--space-3) 0 var(--space-4);
    font-size: clamp(38px, 8vw, 44px);
    line-height: 1.01;
    max-width: 430px;
  }

  .hero-text {
    max-width: 420px;
    margin-bottom: var(--space-5);
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 52px;
    border-radius: 10px;
  }

  .hero-variant-controls {
    position: static;
    width: max-content;
    max-width: 100%;
    margin: var(--space-5) auto 0;
    transform: none;
  }

  .trust-row,
  .product-panel,
  .check-list,
  .lead-grid,
  .footer-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero .trust-row,
  .hero-mini-card {
    display: none;
  }

  .product-panel,
  .simulator-card,
  .testimonial-card,
  .contact-form {
    padding: var(--space-6);
  }

  .product-copy,
  .product-summary {
    margin-inline: 0;
  }

  .contemplados-story {
    padding: var(--space-6);
  }

  .contemplados-story h3 {
    font-size: 28px;
  }

  .contemplados-carousel-head {
    align-items: center;
    flex-direction: column;
  }

  .contemplados-carousel-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .contemplados-gallery {
    height: 540px;
    overflow: hidden;
    perspective: 1100px;
  }

  .contemplado-card {
    width: min(64vw, 340px);
    height: 500px;
  }

  .contemplado-card.is-left-1 {
    opacity: 0.98;
    transform: translate(-50%, -50%) translateX(-54%) translateZ(-130px) scale(0.78) rotateY(0deg);
  }

  .contemplado-card.is-right-1 {
    opacity: 0.98;
    transform: translate(-50%, -50%) translateX(54%) translateZ(-130px) scale(0.78) rotateY(0deg);
  }

  .contemplado-card.is-left-2,
  .contemplado-card.is-right-2 {
    opacity: 0.72;
  }

  .contemplado-card.is-left-2 {
    transform: translate(-50%, -50%) translateX(-88%) translateZ(-270px) scale(0.58) rotateY(0deg);
  }

  .contemplado-card.is-right-2 {
    transform: translate(-50%, -50%) translateX(88%) translateZ(-270px) scale(0.58) rotateY(0deg);
  }

  .contemplado-card.is-left-3,
  .contemplado-card.is-right-3 {
    opacity: 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .floating-panel {
    position: relative;
    inset: auto;
    justify-self: stretch;
    margin-top: var(--space-4);
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .hero-visual::before {
    width: min(88vw, 360px);
  }

  .hero-mark {
    width: min(58vw, 260px);
    margin: var(--space-8) 0;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button-lg,
  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .steps-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .proof-band {
    padding: var(--space-6) 0;
  }

  .proof-slogan strong {
    gap: 0.14em;
    font-size: clamp(26px, 6.8vw, 32px);
    line-height: 1.12;
  }

  .proof-slogan strong > span {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: normal;
  }

  .advantage-card {
    min-height: auto;
  }

  .contemplados-hero-card {
    min-height: 330px;
  }

  .contemplado-card {
    width: min(68vw, 296px);
    height: 410px;
  }

  .contemplados-carousel {
    padding: 0;
    margin-top: 58px;
  }

  .contemplados-gallery {
    height: 455px;
    overflow: hidden;
  }

  .contemplado-card.is-left-1 {
    opacity: 0.98;
    transform: translate(-50%, -50%) translateX(-55%) translateZ(-130px) scale(0.75) rotateY(0deg);
  }

  .contemplado-card.is-right-1 {
    opacity: 0.98;
    transform: translate(-50%, -50%) translateX(55%) translateZ(-130px) scale(0.75) rotateY(0deg);
  }

  .contemplado-card.is-left-2 {
    opacity: 0.58;
    transform: translate(-50%, -50%) translateX(-88%) translateZ(-280px) scale(0.55) rotateY(0deg);
  }

  .contemplado-card.is-right-2 {
    opacity: 0.58;
    transform: translate(-50%, -50%) translateX(88%) translateZ(-280px) scale(0.55) rotateY(0deg);
  }

.contemplado-card div {
    padding: 18px;
  }

  .contemplado-card strong {
    font-size: 21px;
  }

  .contemplados-carousel-head h3 {
    max-width: 390px;
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.08;
  }

  .contemplados-stats {
    grid-template-columns: 1fr;
  }

  .contemplados-hero-card strong {
    font-size: 23px;
  }

  .contemplados-cta {
    padding: var(--space-6);
  }

  .contemplados-cta h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .contemplados-cta-actions .button {
    width: 100%;
  }

  .tab-button {
    min-width: 108px;
    padding-inline: 14px;
  }

  .result-box strong {
    font-size: 28px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.7vw, 36px);
    line-height: 1.03;
  }

  .hero-grid {
    padding: 16px 0 28px;
  }

  .hero-bg-carousel {
    inset: 0;
    height: auto;
  }

  .hero-bg-carousel::after {
    background:
      linear-gradient(90deg, rgba(251, 251, 250, 0.96) 0%, rgba(251, 251, 250, 0.78) 56%, rgba(251, 251, 250, 0.32) 100%),
      linear-gradient(180deg, rgba(251, 251, 250, 0.56) 0%, rgba(251, 251, 250, 0.28) 48%, rgba(251, 251, 250, 0.82) 100%);
  }

  .hero-bg-image {
    object-position: 70% center;
  }

  .hero-variant-option {
    width: 8px;
    height: 8px;
  }

  .hero-variant-option.is-active {
    width: 28px;
  }

  .hero-text {
    margin-bottom: var(--space-5);
    font-size: 15.5px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 50px;
    font-size: 15px;
  }

  .trust-row {
    gap: var(--space-3);
  }

  .hero-mini-card {
    width: 100%;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-heading p:not(.cc-eyebrow) {
    max-width: 360px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.55;
  }

  .tab-list {
    gap: 4px;
    margin-inline: var(--space-4);
    padding: 5px;
    overflow-x: visible;
  }

  .tab-button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 8px;
    font-size: 13px;
  }
}

.contemplado-card:not(.is-active) div {
  padding: 20px;
}

@media (min-width: 821px) {
  .contemplados-gallery {
    width: calc(100% + 8px);
    margin-left: -4px;
  }
}

/* Keep the expanded WhatsApp CTA above the legacy floating-button rules. */
.whatsapp-float {
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  height: auto;
  min-height: 50px;
  padding: 0 16px;
  color: var(--white);
  background: #20bf63;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(17, 118, 59, 0.28);
  font-size: 12px;
  font-weight: 750;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #159e4e;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: none;
}

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

  .brand-link {
    order: 1;
  }

  .brand-link img {
    width: 160px;
    max-width: none;
  }

  .header-socials {
    order: 2;
    display: flex;
    gap: 5px;
    margin-left: auto;
  }

  .whatsapp-header,
  .instagram-header {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }

  .instagram-header svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    order: 3;
  }

  #consorcios .product-visual > img {
    object-position: 68% center;
  }

  #consultoria {
    padding-bottom: 48px;
  }

  #faq {
    padding-top: 48px;
  }

  #consultoria .testimonial-layout,
  #faq .faq-grid {
    gap: 32px;
  }

  #consultoria .section-heading,
  #faq .section-heading {
    margin-bottom: 0;
  }

  .contemplados-cta {
    margin-top: 48px;
  }

  .whatsapp-float {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    min-height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }
}

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

  .brand-link img {
    width: 140px;
  }

  .whatsapp-header,
  .instagram-header {
    width: 30px;
    height: 30px;
  }

  .instagram-header svg {
    width: 17px;
    height: 17px;
  }
}
