:root {
  --bg: #f3fbfa;
  --bg-deep: #dbf4f0;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-tint: #ecfbf8;
  --ink: #0c1826;
  --muted: #486273;
  --muted-strong: #274556;
  --line: rgba(11, 90, 95, 0.12);
  --brand: #0fa49b;
  --brand-deep: #0b766e;
  --brand-soft: #ddf8f4;
  --brand-strong: #08333d;
  --success: #18a764;
  --shadow: 0 20px 60px rgba(8, 33, 45, 0.14);
  --shadow-soft: 0 18px 40px rgba(8, 33, 45, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(16, 190, 176, 0.25), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(15, 159, 150, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fdfc 0%, var(--bg) 42%, #eef8f6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

body::before {
  top: -120px;
  left: -70px;
  width: 340px;
  height: 340px;
  background: rgba(50, 194, 182, 0.38);
}

body::after {
  right: -90px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: rgba(71, 184, 231, 0.18);
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
}

strong {
  font-weight: 800;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.section-compact {
  padding-top: 12px;
  padding-bottom: 20px;
}

.section-last {
  padding-bottom: 52px;
}

.section-surface {
  position: relative;
}

.page-shell {
  overflow-x: clip;
  overflow-y: visible;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading-tight {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.76rem;
}

h1 {
  margin: 12px 0 14px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(2.65rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 72;
  backdrop-filter: blur(16px);
  background: rgba(248, 253, 252, 0.9);
  border-bottom: 1px solid rgba(11, 118, 110, 0.08);
  overflow: visible;
}

.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(138px, 15vw, 200px);
}

.site-nav {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
  overflow: visible;
}

.site-nav > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.site-nav > a,
.nav-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 159, 150, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  --nav-accent: #0f9f96;
  --nav-bg: rgba(226, 249, 245, 0.94);
  --nav-border: rgba(15, 159, 150, 0.28);
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.18s ease;
}

.nav-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

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

.nav-summary::marker {
  content: "";
}

.site-nav > a::after,
.nav-summary::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--nav-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease, background 0.24s ease;
}

.nav-accent-home {
  --nav-accent: #0f9f96;
  --nav-bg: rgba(226, 249, 245, 0.94);
  --nav-border: rgba(15, 159, 150, 0.28);
}

.nav-accent-seguros {
  --nav-accent: #ef7b2d;
  --nav-bg: rgba(255, 245, 238, 0.95);
  --nav-border: rgba(239, 123, 45, 0.24);
}

.nav-accent-canales {
  --nav-accent: #17738f;
  --nav-bg: rgba(241, 248, 251, 0.95);
  --nav-border: rgba(23, 115, 143, 0.22);
}

.nav-accent-atencion {
  --nav-accent: #1c8d78;
  --nav-bg: rgba(241, 250, 247, 0.95);
  --nav-border: rgba(28, 141, 120, 0.22);
}

.nav-accent-nosotros {
  --nav-accent: #38607a;
  --nav-bg: rgba(244, 248, 251, 0.95);
  --nav-border: rgba(56, 96, 122, 0.22);
}

.site-nav > a:hover,
.site-nav > a.is-active,
.site-nav > a:focus-visible,
.nav-summary:hover,
.nav-summary.is-active,
.nav-summary:focus-visible,
.nav-menu:hover > .nav-summary,
.nav-menu:focus-within > .nav-summary,
.nav-menu[open] > .nav-summary {
  color: var(--nav-accent);
  border-color: var(--nav-border);
  background: var(--nav-bg);
  box-shadow: 0 12px 24px rgba(15, 93, 90, 0.08);
  transform: translateY(-1px);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.site-nav > a:focus-visible::after,
.nav-summary:hover::after,
.nav-summary.is-active::after,
.nav-summary:focus-visible::after,
.nav-menu:hover > .nav-summary::after,
.nav-menu:focus-within > .nav-summary::after,
.nav-menu[open] > .nav-summary::after {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
  z-index: 12;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
  opacity: 0.7;
}

.nav-menu[open] .nav-caret,
.nav-menu:hover .nav-caret,
.nav-menu:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(15, 159, 150, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 44px rgba(15, 79, 77, 0.14);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  z-index: 84;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-menu[open] > .nav-submenu,
.nav-menu:hover > .nav-submenu,
.nav-menu:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.18s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--nav-accent);
  border-color: var(--nav-border);
  background: var(--nav-bg);
  transform: translateX(2px);
}

.nav-submenu a[aria-current="page"] {
  color: var(--nav-accent);
  border-color: var(--nav-border);
  background: var(--nav-bg);
}

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

.header-link,
.header-cta {
  white-space: nowrap;
}

.hero {
  padding-top: 34px;
  padding-bottom: 18px;
}

.hero-grid,
.spotlight-card,
.page-hero-grid,
.split-grid,
.footer-grid,
.campaign-card {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 30px;
}

.hero-copy,
.page-hero-copy {
  max-width: 650px;
}

.hero-cta-row,
.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.note {
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.trust-strip,
.page-chip-row,
.panel-chip-row,
.metric-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip {
  margin-top: 22px;
}

.trust-strip span,
.page-chip-row span,
.panel-chip-row span,
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 159, 150, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(10, 72, 73, 0.06);
}

.hero-visual,
.spotlight-art {
  position: relative;
}

.hero-art-card,
.page-panel {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(11, 118, 110, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 251, 248, 0.94));
  box-shadow: var(--shadow);
}

.hero-art-card::before,
.page-panel::before {
  content: "";
  position: absolute;
  inset: auto 26px -18px 26px;
  height: 42px;
  border-radius: 999px;
  background: rgba(10, 118, 110, 0.16);
  filter: blur(24px);
}

.art-kicker,
.panel-kicker {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 49, 59, 0.84);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-art-card img,
.spotlight-art img {
  position: relative;
  width: 100%;
  border-radius: 24px;
}

.page-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  overflow: hidden;
}

.page-panel h2 {
  margin: 38px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.page-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.panel-stat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(240, 253, 250, 0.9);
  border: 1px solid rgba(15, 159, 150, 0.12);
}

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

.panel-stat strong {
  font-size: 1.15rem;
}

.panel-stat span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-signal {
  display: grid;
  gap: 12px;
}

.panel-signal div {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 127, 118, 0.08), rgba(15, 164, 155, 0.16));
  border: 1px solid rgba(11, 118, 110, 0.14);
}

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

.panel-signal strong {
  font-size: 0.98rem;
}

.panel-signal span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.65;
}

.campaign-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b7f76, #0ca79b 62%, #0b7f76);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(8, 56, 57, 0.16);
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  white-space: nowrap;
}

.campaign-copy h2,
.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.campaign-copy p,
.cta-band p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.product-grid,
.benefit-grid,
.steps-grid,
.ally-grid,
.info-grid,
.timeline-grid,
.market-grid,
.contact-grid,
.market-sample-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.benefit-card,
.step-card,
.info-card,
.timeline-card,
.ally-card,
.contact-card,
.market-card,
.market-sample-card,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.product-card,
.info-card,
.timeline-card,
.ally-card,
.contact-card,
.market-card,
.market-sample-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
}

.product-card-featured,
.info-card-highlight,
.contact-card-highlight,
.market-card-highlight {
  background: linear-gradient(180deg, rgba(232, 252, 248, 0.98), rgba(255, 255, 255, 0.96));
}

.product-icon,
.benefit-icon,
.step-icon,
.info-icon {
  color: var(--brand);
}

.product-icon,
.info-icon {
  width: 56px;
  height: 56px;
}

.card-tag,
.card-kicker {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card h3,
.benefit-card h3,
.step-card h3,
.info-card h3,
.timeline-card h3,
.ally-card h3,
.contact-card h3,
.market-card h3,
.market-sample-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.product-card p,
.benefit-card p,
.step-card p,
.info-card p,
.timeline-card p,
.ally-card p,
.contact-card p,
.market-card p,
.market-sample-card p,
.contact-card li,
.legal-body p,
.legal-body li {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card-list,
.list-check,
.mini-list,
.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.card-list li,
.list-check li,
.mini-list li,
.legal-body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-weight: 600;
}

.card-list li::before,
.list-check li::before,
.mini-list li::before,
.legal-body li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

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

.ally-card {
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
}

.home-secondary-section .section-heading {
  max-width: 700px;
}

.home-secondary-section .section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.home-secondary-section .ally-card {
  padding: 20px;
}

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

.benefit-card,
.step-card {
  padding: 22px 22px 24px;
  border-radius: 24px;
}

.benefit-icon,
.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

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

.step-card {
  position: relative;
}

.step-index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 159, 150, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.spotlight-card {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: center;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(11, 118, 110, 0.14);
  background: linear-gradient(140deg, rgba(7, 61, 68, 0.97), rgba(12, 139, 131, 0.92));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.spotlight-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.spotlight-copy p:last-of-type {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.spotlight-copy .eyebrow {
  color: rgba(222, 255, 251, 0.72);
}

.spotlight-art img {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.page-main {
  padding-bottom: 12px;
}

.page-hero {
  padding-top: 30px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.page-hero-copy .lead {
  max-width: 62ch;
}

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

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

.timeline-grid,
.contact-grid,
.market-sample-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-card p + .mini-list,
.info-card p + .list-check,
.market-card p + .mini-list,
.timeline-card p + .mini-list {
  margin-top: 2px;
}

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.split-panel {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(11, 118, 110, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.split-panel h2,
.legal-body h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.split-panel h3,
.legal-body h3 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.split-panel p,
.legal-body p {
  margin: 0;
}

.split-panel p + p,
.legal-body p + p,
.legal-body p + ul,
.legal-body ul + p,
.legal-body h2 + p,
.legal-body h3 + p,
.legal-body h3 + ul,
.split-panel h3 + ul,
.split-panel h2 + p {
  margin-top: 12px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(8, 49, 59, 0.98), rgba(12, 139, 131, 0.9));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.market-card .pill,
.market-sample-card .pill,
.contact-card .pill {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 159, 150, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.84rem;
}

.market-sample-card .location {
  color: var(--muted-strong);
  font-weight: 700;
}

.contact-card a:not(.btn),
.legal-note a {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
}

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

.faq-list details {
  border-radius: 22px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 800;
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-body {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-note {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(223, 249, 245, 0.8);
  border: 1px solid rgba(15, 159, 150, 0.14);
}

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

.site-footer {
  padding: 34px 0 118px;
  background: linear-gradient(180deg, rgba(7, 49, 59, 0.98), rgba(7, 41, 49, 1));
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  align-items: start;
  padding-bottom: 24px;
}

.brand-footer img {
  width: clamp(170px, 22vw, 260px);
  filter: brightness(1.18);
}

.footer-branding {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-copy {
  max-width: 58ch;
}

.footer-copy,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links p {
  margin: 0 0 4px;
  color: #ffffff;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.footer-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.footer-market {
  display: grid;
  gap: 18px;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-support-section {
  padding-top: 6px;
}

.footer-market-light {
  padding: 0;
  border-top: 0;
}

.footer-market-light .footer-market-kicker {
  color: var(--brand-deep);
}

.footer-market-light .footer-market-title {
  color: var(--ink);
}

.footer-market-light .footer-market-note {
  color: var(--muted);
}

.footer-market-regulatory-only {
  padding-top: 0;
}

.footer-market-copy {
  display: grid;
  gap: 8px;
}

.footer-market-kicker {
  margin: 0;
  color: #7fe5d7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-market-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 800;
}

.footer-market-note,
.footer-regulatory-note {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.footer-logo-ribbon {
  display: flex;
  width: max-content;
  animation: footerMarquee 34s linear infinite;
}

.footer-logo-marquee:hover .footer-logo-ribbon {
  animation-play-state: paused;
}

.footer-logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
  min-width: max-content;
}

.footer-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 74px;
  padding: 14px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(5, 20, 31, 0.18);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(5, 20, 31, 0.24);
  border-color: rgba(15, 159, 150, 0.28);
}

.footer-logo-item img {
  width: auto;
  max-width: 150px;
  max-height: 34px;
  object-fit: contain;
}

.footer-regulatory {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.footer-regulatory-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-logo-item-regulatory {
  min-width: 164px;
  min-height: 64px;
  padding: 12px 18px;
}

.footer-logo-item-regulatory img {
  max-width: 132px;
  max-height: 30px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: #aef4ea;
  text-decoration: none;
  font-weight: 700;
}

@keyframes footerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(10, 118, 110, 0.24);
}

.btn-outline {
  color: var(--brand-deep);
  border-color: rgba(15, 159, 150, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #15924a);
  box-shadow: 0 14px 28px rgba(21, 146, 74, 0.24);
}

.btn-soft-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.sticky-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(11, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(8, 33, 45, 0.16);
  backdrop-filter: blur(16px);
}

.sticky-mobile-cta strong,
.sticky-mobile-cta span {
  display: block;
}

.sticky-mobile-cta strong {
  font-size: 0.9rem;
}

.sticky-mobile-cta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.sticky-mobile-cta .btn {
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.page-seguros-clean {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfdfd 0%, #f2f8f8 52%, #eef6f5 100%);
}

.page-seguros-clean .page-hero {
  padding-top: 40px;
}

.page-seguros-clean .page-hero-grid {
  gap: 36px;
}

.page-seguros-clean .page-panel {
  padding: 28px;
  border-radius: 28px;
  border-color: rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(8, 33, 45, 0.07);
}

.page-seguros-clean .page-panel::before {
  display: none;
}

.page-seguros-clean .panel-kicker {
  position: static;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(15, 159, 150, 0.14);
  background: rgba(15, 159, 150, 0.08);
  color: var(--brand-deep);
}

.page-seguros-clean .page-panel h2 {
  margin: 0;
}

.page-seguros-clean .panel-signal div {
  background: #f7fbfb;
  border-color: rgba(12, 96, 97, 0.1);
}

.page-seguros-clean .catalog-section .section-heading,
.page-seguros-clean .advisory-section .section-heading {
  max-width: 720px;
}

.page-seguros-clean .catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.page-seguros-clean .catalog-card,
.page-seguros-clean .advisory-grid .info-card,
.page-seguros-clean .split-panel {
  border-color: rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(8, 33, 45, 0.06);
}

.page-seguros-clean .catalog-card {
  min-height: 100%;
  padding: 28px;
  gap: 14px;
  border-radius: 24px;
}

.page-seguros-clean .catalog-card h3 {
  font-size: 1.35rem;
}

.page-seguros-clean .catalog-card .text-link {
  margin-top: auto;
}

.page-seguros-clean .info-card-highlight {
  background: linear-gradient(180deg, #f3fdfb 0%, #ffffff 100%);
}

.page-seguros-clean .advisory-section {
  background: transparent;
}

.page-seguros-clean .advisory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-seguros-clean .split-grid {
  gap: 20px;
}

.page-seguros-clean .cta-band {
  border-radius: 28px;
  background: linear-gradient(135deg, #073c45, #0f8f89 70%, #10a49b);
  box-shadow: 0 18px 38px rgba(8, 33, 45, 0.14);
}

.page-home-v2 {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f4f8f8 52%, #eef5f4 100%);
}

.hero-home-v2 {
  padding-top: 42px;
}

.home-hero-v2-grid,
.feature-split,
.channel-showcase,
.motor-hero-grid {
  display: grid;
  gap: 28px;
}

.home-hero-v2-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: start;
}

.hero-media-stack {
  display: grid;
  gap: 18px;
}

.hero-side-panel h2 {
  margin-top: 0;
}

.segment-grid,
.support-grid,
.motor-benefit-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

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

.segment-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(8, 33, 45, 0.12);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.segment-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(8, 33, 45, 0.16);
}

.segment-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.segment-tile h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
}

.segment-tile span {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
}

.segment-tile svg {
  width: 64px;
  height: 64px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.96);
}

.segment-tile-moto {
  background: linear-gradient(145deg, #0a726f, #11a79d);
}

.segment-tile-auto {
  background: linear-gradient(145deg, #066a88, #1f9fc0);
}

.segment-tile-fianzas {
  background: linear-gradient(145deg, #0d5067, #17738f);
}

.segment-tile-pets {
  background: linear-gradient(145deg, #11856b, #1cb596);
}

.segment-tile-home {
  background: linear-gradient(145deg, #607f90, #7fa8b3);
}

.segment-tile-business {
  background: linear-gradient(145deg, #21465b, #38607a);
}

.feature-split,
.motor-hero-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.feature-media-card {
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(11, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(8, 33, 45, 0.08);
}

.feature-media-card img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.feature-copy {
  display: grid;
  gap: 16px;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.02;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.channel-showcase {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #073c45, #0c716d 56%, #13a49a);
  box-shadow: 0 20px 44px rgba(8, 33, 45, 0.16);
}

.channel-showcase-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.04;
}

.channel-showcase-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.channel-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.channel-mini-card,
.support-card,
.resource-card {
  border: 1px solid rgba(11, 118, 110, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(8, 33, 45, 0.08);
}

.channel-mini-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.channel-mini-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

.channel-mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

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

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

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

.home-premium-panel h2,
.home-trust-panel h2 {
  max-width: 15ch;
}

.home-entry-card {
  align-items: center;
}

.home-entry-metrics {
  align-items: center;
}

.home-product-spotlight {
  margin-bottom: 20px;
}

.home-product-spotlight .list-check li,
.home-editorial-band .list-check li {
  color: #ffffff;
}

.home-product-spotlight .list-check li::before {
  background: rgba(132, 244, 230, 0.92);
}

.home-product-spotlight .btn-outline,
.home-editorial-band .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.home-family-grid {
  margin-top: 18px;
}

.home-family-grid .info-card,
.home-process-grid .step-card {
  min-height: 100%;
}

.home-trust-split {
  align-items: start;
}

.home-trust-stack {
  gap: 18px;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #072c35, #0a5760 48%, #0f8a82);
  box-shadow: 0 20px 44px rgba(8, 33, 45, 0.18);
}

.home-editorial-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.home-editorial-copy .eyebrow {
  color: rgba(222, 255, 251, 0.72);
}

.home-editorial-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.95rem, 3.5vw, 2.9rem);
  line-height: 1.02;
}

.home-editorial-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.home-editorial-band .list-check li::before {
  background: #7ff1e7;
}

.home-editorial-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.home-editorial-panel::before {
  background: rgba(255, 255, 255, 0.18);
}

.home-editorial-panel .panel-kicker {
  background: rgba(255, 255, 255, 0.12);
}

.home-editorial-panel h2 {
  color: #ffffff;
}

.home-editorial-panel p,
.home-editorial-panel .panel-signal span {
  color: rgba(255, 255, 255, 0.78);
}

.home-editorial-panel .panel-signal div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-editorial-panel .panel-signal strong {
  color: #ffffff;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
}

.support-card h3,
.resource-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.08;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.support-card .btn {
  margin-top: auto;
  width: 100%;
}

.page-motor {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 175, 160, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfdfd 0%, #f5f9f9 50%, #eef5f4 100%);
}

.motor-hero .page-hero-copy {
  max-width: 680px;
}

.motor-hero-media .feature-media-card {
  padding: 16px;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
}

.resource-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.resource-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.resource-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.resource-card-text {
  justify-content: center;
}

.resource-card-text .resource-card-body {
  height: 100%;
  padding: 28px;
}

.home-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-family-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(8, 33, 45, 0.06);
}

.product-family-card h3 {
  margin: 0;
  font-size: 1.42rem;
}

.product-family-card p:not(.card-kicker) {
  margin: 0;
}

.product-family-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.product-family-icon svg {
  width: 32px;
  height: 32px;
}

.product-family-card .text-link {
  margin-top: auto;
}

.product-family-card-moto {
  background: linear-gradient(180deg, rgba(15, 164, 155, 0.14), rgba(255, 255, 255, 0.98) 78%);
}

.product-family-card-auto {
  background: linear-gradient(180deg, rgba(245, 170, 61, 0.18), rgba(255, 255, 255, 0.98) 78%);
}

.product-family-card-bond {
  background: linear-gradient(180deg, rgba(4, 70, 92, 0.12), rgba(255, 255, 255, 0.98) 78%);
}

.product-family-card-pet {
  background: linear-gradient(180deg, rgba(102, 183, 144, 0.18), rgba(255, 255, 255, 0.98) 78%);
}

.product-family-card-moto .product-family-icon {
  background: linear-gradient(135deg, #10a49b, #0b706f);
}

.product-family-card-auto .product-family-icon {
  background: linear-gradient(135deg, #f5aa3d, #ef7b2d);
}

.product-family-card-bond .product-family-icon {
  background: linear-gradient(135deg, #15576b, #0e3f50);
}

.product-family-card-pet .product-family-icon {
  background: linear-gradient(135deg, #4fb884, #0fa49b);
}

.home-product-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 250, 0.98));
  box-shadow: 0 18px 34px rgba(8, 33, 45, 0.06);
}

.home-product-panel h3 {
  margin: 0;
  font-size: 1.75rem;
}

.home-product-panel p {
  margin: 0;
}

.home-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-support-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(12, 96, 97, 0.12);
  background: #ffffff;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 248, 0.98));
  border: 1px solid rgba(12, 96, 97, 0.08);
  box-shadow: 0 18px 36px rgba(8, 33, 45, 0.07);
}

.feature-spotlight-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.feature-spotlight-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-spotlight-copy h2,
.feature-spotlight-copy p {
  margin: 0;
}

.page-home-v2 {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f2f8f8 52%, #eef6f5 100%);
}

.hero-home-v2 {
  padding-top: 36px;
}

.home-hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-media-stack {
  display: grid;
  gap: 20px;
}

.feature-media-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(12, 96, 97, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(8, 33, 45, 0.08);
}

.feature-media-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-side-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 248, 0.98));
  box-shadow: 0 18px 34px rgba(8, 33, 45, 0.06);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.segment-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px rgba(8, 33, 45, 0.06);
  color: var(--text);
  text-decoration: none;
}

.segment-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(5, 69, 92, 0.72);
}

.segment-tile h3,
.segment-tile span {
  margin: 0;
}

.segment-tile h3 {
  font-size: 1.42rem;
}

.segment-tile span {
  color: var(--muted);
}

.segment-tile svg {
  width: 42px;
  height: 42px;
  margin-top: auto;
}

.segment-tile-moto {
  background: linear-gradient(180deg, rgba(15, 164, 155, 0.14), rgba(255, 255, 255, 0.98) 78%);
}

.segment-tile-auto {
  background: linear-gradient(180deg, rgba(245, 170, 61, 0.18), rgba(255, 255, 255, 0.98) 78%);
}

.segment-tile-fianzas {
  background: linear-gradient(180deg, rgba(4, 70, 92, 0.12), rgba(255, 255, 255, 0.98) 78%);
}

.segment-tile-pets {
  background: linear-gradient(180deg, rgba(94, 185, 150, 0.18), rgba(255, 255, 255, 0.98) 78%);
}

.segment-tile-home,
.segment-tile-business {
  background: linear-gradient(180deg, rgba(15, 159, 150, 0.06), rgba(255, 255, 255, 0.98) 78%);
}

.feature-split,
.channel-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-copy h2,
.feature-copy p {
  margin: 0;
}

.channel-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-showcase-copy h2,
.channel-showcase-copy p {
  margin: 0;
}

.channel-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.channel-mini-card,
.support-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(8, 33, 45, 0.05);
}

.channel-mini-card h3,
.channel-mini-card p,
.support-card h3,
.support-card p {
  margin: 0;
}

.channel-mini-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-mini-card h3 {
  color: var(--text);
}

.channel-mini-card p {
  color: var(--muted);
  line-height: 1.68;
}

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

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

.support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card .btn {
  margin-top: auto;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: var(--brand);
  background: rgba(15, 159, 150, 0.08);
}

.info-icon svg {
  width: 28px;
  height: 28px;
}

.page-motor-clean {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f3f8f8 52%, #eef5f5 100%);
}

.page-motor-clean .motor-hero {
  padding-top: 34px;
}

.motor-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 250, 0.98));
  border: 1px solid rgba(12, 96, 97, 0.08);
  box-shadow: 0 18px 36px rgba(8, 33, 45, 0.07);
}

.motor-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

.motor-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.motor-hero-copy h1,
.motor-hero-copy p {
  margin: 0;
}

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

.motor-path-shell {
  display: grid;
  gap: 24px;
}

.motor-story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 248, 0.98));
  border: 1px solid rgba(12, 96, 97, 0.08);
  box-shadow: 0 18px 32px rgba(8, 33, 45, 0.06);
}

.motor-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.motor-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.motor-story-copy h2,
.motor-story-copy p {
  margin: 0;
}

.motor-path-grid,
.motor-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.motor-steps-grid {
  align-items: stretch;
}

.motor-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.motor-article-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(12, 96, 97, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(8, 33, 45, 0.06);
}

.motor-article-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.motor-article-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.motor-article-copy h3,
.motor-article-copy p {
  margin: 0;
}

.motor-article-copy .text-link {
  margin-top: auto;
}

.motor-final-cta {
  margin-top: 24px;
}

.product-family-grid,
.law-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.law-price-grid-auto {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card h3,
.price-card p,
.price-meta p {
  margin: 0;
}

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

.price-meta div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(15, 159, 150, 0.06);
  border: 1px solid rgba(15, 159, 150, 0.12);
}

.price-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  display: block;
  color: var(--brand-strong);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.coverage-inline {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 96, 97, 0.1);
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.compare-inline {
  display: grid;
  gap: 16px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.compare-row > div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

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

.compare-row span {
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .header-row,
  .hero-grid,
  .home-hero-v2-grid,
  .campaign-card,
  .spotlight-card,
  .home-editorial-band,
  .home-product-showcase,
  .feature-spotlight,
  .feature-split,
  .channel-showcase,
  .motor-hero-grid,
  .motor-hero-shell,
  .motor-story-card,
  .page-hero-grid,
  .split-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .header-row {
    padding: 14px 0 18px;
  }

  .site-nav,
  .header-actions {
    width: 100%;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav > a,
  .nav-summary {
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .site-nav > a::after,
  .nav-summary::after {
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
  }

  .campaign-badge {
    justify-self: start;
  }

  .campaign-cta,
  .footer-cta {
    width: 100%;
  }

  .footer-actions {
    min-width: 0;
  }

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

  .footer-regulatory-logos {
    justify-content: flex-start;
  }

  .benefit-grid,
  .market-grid,
  .segment-grid,
  .channel-showcase-grid,
  .support-grid,
  .support-grid-three,
  .resource-grid,
  .motor-benefit-grid,
  .motor-path-grid,
  .motor-help-grid,
  .home-process-grid,
  .product-family-grid,
  .law-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-grid,
  .ally-grid,
  .info-grid,
  .timeline-grid,
  .contact-grid,
  .segment-grid,
  .support-grid,
  .support-grid-three,
  .resource-grid,
  .market-sample-grid,
  .motor-article-grid {
    grid-template-columns: 1fr;
  }

  .info-grid-two {
    grid-template-columns: 1fr;
  }

  .home-editorial-band {
    grid-template-columns: 1fr;
  }

  .channel-showcase-grid,
  .product-family-grid,
  .page-seguros-clean .catalog-grid,
  .page-seguros-clean .advisory-grid {
    grid-template-columns: 1fr;
  }

  .motor-benefit-grid,
  .motor-path-grid,
  .motor-help-grid,
  .benefit-grid-home-v2,
  .home-process-grid,
  .product-family-grid,
  .law-price-grid,
  .law-price-grid-auto {
    grid-template-columns: 1fr;
  }

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

  .compare-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 28px 0;
  }

  .site-header {
    position: relative;
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    min-height: auto;
    padding: 8px 0 10px;
  }

  .brand img {
    width: 118px;
  }

  .site-nav {
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    order: 3;
    gap: 6px;
    padding: 2px 18px 2px 0;
    margin-right: -12px;
    mask-image: linear-gradient(90deg, #000 0 86%, transparent 100%);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav > a,
  .nav-summary {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .site-nav > a::after,
  .nav-summary::after {
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 2px;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-submenu {
    position: fixed;
    top: 108px;
    left: 12px;
    right: 12px;
    min-width: auto;
    max-height: min(70vh, 420px);
    overflow: auto;
  }

  .header-link {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .product-card,
  .benefit-card,
  .step-card,
  .faq-list details,
  .campaign-card,
  .feature-media-card,
  .spotlight-card,
  .info-card,
  .segment-tile,
  .timeline-card,
  .contact-card,
  .support-card,
  .channel-mini-card,
  .motor-story-card,
  .motor-article-card,
  .market-card,
  .market-sample-card,
  .split-panel,
  .cta-band,
  .legal-body,
  .page-panel {
    border-radius: 24px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .hero-home-v2 {
    padding-top: 24px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-cta-row,
  .page-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-cta-row .btn,
  .page-actions .btn,
  .campaign-cta,
  .footer-actions .btn {
    width: 100%;
  }

  .note {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .trust-strip {
    margin-top: 14px;
    gap: 8px;
  }

  .trust-strip span {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .hero-art-card {
    padding: 12px;
  }

  .hero-art-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
  }

  .channel-showcase {
    padding: 24px;
  }

  .home-editorial-band {
    padding: 24px;
  }

  .segment-tile {
    min-height: 190px;
  }

  .campaign-card {
    gap: 12px;
    padding: 20px;
  }

  .home-premium-panel .panel-stat-grid {
    grid-template-columns: 1fr;
  }

  .campaign-badge {
    min-height: 36px;
    font-size: 0.82rem;
  }

  .sticky-mobile-cta {
    gap: 10px;
  }

  .sticky-mobile-cta strong {
    line-height: 1.15;
  }

  .sticky-mobile-cta span {
    display: none;
  }

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

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-mobile-cta {
    display: flex;
    left: 12px;
    right: 12px;
    bottom: 10px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
  }

  .brand img {
    width: 108px;
  }

  .site-nav {
    gap: 5px;
    padding-right: 14px;
    margin-right: -10px;
  }

  .site-nav > a,
  .nav-summary {
    min-height: 31px;
    padding: 0 9px;
    font-size: 0.79rem;
  }

  .site-nav > a::after,
  .nav-summary::after {
    left: 9px;
    right: 9px;
    bottom: 4px;
  }

  .nav-submenu {
    top: 102px;
  }

  .lead,
  .page-panel p,
  .section-heading p:last-child,
  .product-card p,
  .benefit-card p,
  .step-card p,
  .info-card p,
  .timeline-card p,
  .ally-card p,
  .contact-card p,
  .market-card p,
  .market-sample-card p,
  .legal-body p,
  .legal-body li {
    font-size: 0.98rem;
  }

  .hero-art-card,
  .page-panel,
  .legal-body {
    padding: 16px;
  }

  .hero-side-panel,
  .motor-hero-shell,
  .motor-story-card {
    padding: 16px;
  }

  .segment-tile,
  .support-card,
  .channel-mini-card,
  .motor-article-copy {
    padding: 18px;
  }

  .resource-card-body {
    padding: 18px;
  }

  .home-support-links a {
    width: 100%;
  }

  .feature-media-card img,
  .motor-hero-media img,
  .motor-story-media img,
  .motor-article-card img {
    aspect-ratio: 4 / 3;
  }

  .page-seguros-clean .catalog-card {
    padding: 22px;
  }

  .art-kicker,
  .panel-kicker {
    top: 14px;
    left: 14px;
  }

  .page-panel .panel-stat-grid,
  .benefit-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    flex-direction: row;
    align-items: center;
  }

  .footer-logo-item {
    min-width: 152px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .footer-logo-item img {
    max-width: 124px;
    max-height: 30px;
  }

  .footer-logo-item-regulatory {
    min-width: 148px;
    min-height: 60px;
  }

  .footer-regulatory {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-logo-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .footer-logo-ribbon {
    animation: none;
  }
}

.page-canales-v2,
.page-atencion-v2 {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f2f8f8 48%, #eef5f4 100%);
}

.page-canales-v2 .page-hero,
.page-atencion-v2 .page-hero {
  padding-top: 36px;
}

.page-canales-v2 .campaign-card,
.page-atencion-v2 .page-panel {
  border: 1px solid rgba(12, 96, 97, 0.08);
  box-shadow: 0 18px 34px rgba(8, 33, 45, 0.06);
}

.page-canales-v2 .campaign-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 248, 0.98));
}

.page-canales-v2 .channel-showcase,
.page-atencion-v2 .resource-grid {
  align-items: stretch;
}

.page-atencion-v2 .resource-card-text {
  min-height: 100%;
}

.page-nosotros-v2 {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 175, 160, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f2f8f8 50%, #eef5f4 100%);
}

.page-nosotros-v2 .page-hero {
  padding-top: 36px;
}

.feature-media-card-noimage {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.feature-media-card-noimage h2,
.feature-media-card-noimage h3,
.feature-media-card-noimage p {
  margin: 0;
}

.feature-media-card-noimage p {
  color: var(--muted);
  line-height: 1.72;
}

.channel-route-grid,
.flow-grid,
.brand-values-grid {
  display: grid;
  gap: 14px;
}

.channel-route-grid,
.brand-values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.channel-route-card,
.flow-card,
.brand-value-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(12, 96, 97, 0.1);
  background: rgba(240, 253, 250, 0.78);
}

.channel-route-card strong,
.channel-route-card span,
.flow-card strong,
.flow-card span,
.brand-value-card strong,
.brand-value-card span {
  display: block;
}

.channel-route-card strong,
.flow-card strong,
.brand-value-card strong {
  font-size: 1rem;
}

.channel-route-card span,
.flow-card span,
.brand-value-card span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.62;
}

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

.flow-card {
  position: relative;
  padding-left: 70px;
  min-height: 88px;
}

.flow-step {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
}

.brand-values-grid {
  margin-top: 8px;
}

.page-nosotros-v2 .timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-nosotros-v2 .resource-grid {
  align-items: stretch;
}

.page-nosotros-v2 .resource-card-text {
  min-height: 100%;
}

.page-legacy-v2 {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 175, 160, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f4f9f8 52%, #eef5f4 100%);
}

.page-legacy-v2 .page-hero {
  padding-top: 34px;
}
