/* Sympat — blanco, rojo y acentos actuales; respeta prefers-reduced-motion */

:root {
  --bg: #f8f7f6;
  --bg-page: linear-gradient(165deg, #fff 0%, #f8f7f6 45%, #fafafa 100%);
  --bg-elev: #f0f0f2;
  --bg-card: #ffffff;
  --bg-input: #fafaf9;
  --border: #e2e2e6;
  --text: #1c1c1f;
  --text-strong: #0c0c0e;
  --muted: #4b4b55;
  --muted-faint: #6e6e78;
  --accent: #d90415;
  --accent-2: #e30613;
  --accent-hover: #f01522;
  --accent-btn-shadow: #ff5c64;
  --accent-soft: rgba(217, 4, 21, 0.1);
  --accent-mid: #9f0712;
  --glow: rgba(217, 4, 21, 0.22);
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.09);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset, 0 18px 50px -12px rgba(217, 4, 21, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 80px;
  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Google Material Symbols (fuentes cargadas vía Google Fonts) */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.visually-hidden {
  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 {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.5rem 0.9rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transform: translateY(-120%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Background */
.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #fff 40%, transparent 100%);
  opacity: 0.75;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  background: radial-gradient(circle, var(--glow) 0%, transparent 68%);
  filter: blur(48px);
  animation: floatGlow 18s ease-in-out infinite;
}

.bg-glow--1 {
  top: -18%;
  right: -8%;
  width: 58vw;
  max-width: 720px;
  height: 58vw;
  max-height: 720px;
}

.bg-glow--2 {
  bottom: -15%;
  left: -12%;
  width: 50vw;
  max-width: 520px;
  height: 50vw;
  max-height: 520px;
  background: radial-gradient(circle, rgba(217, 4, 21, 0.1) 0%, transparent 70%);
  animation-direction: reverse;
  animation-duration: 22s;
}

@media (prefers-reduced-motion: reduce) {
  .bg-glow {
    animation: none;
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 6%) scale(1.05);
  }
}

/* Layout */
.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container.narrow {
  max-width: 820px;
}

.container.narrow .section__title {
  margin-top: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  width: auto;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 0.98;
  transition: opacity var(--transition), transform 320ms ease;
}

.brand:hover .brand__logo,
.brand:focus-visible .brand__logo {
  opacity: 1;
  transform: translateY(-1px);
}

/* Nav */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -7px;
}

.nav-toggle__bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__track {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0.25rem 0.2rem 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.15rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.nav__list a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__list a:hover,
.nav__list a[aria-current="true"] {
  color: var(--text-strong);
  background: rgba(227, 6, 19, 0.06);
}

.nav__cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent) 0%, #b50510 100%) !important;
  margin-left: 0.4rem;
  box-shadow: 0 0 0 0 var(--accent-soft);
  animation: pulseCTA 3s ease-in-out infinite;
}

.nav__cta:hover,
.nav__cta[aria-current="true"] {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%) !important;
}

@keyframes pulseCTA {
  0%,
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 0 6px var(--accent-soft);
  }
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__track {
    width: 100%;
    max-width: 400px;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .nav__list a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }

  .nav__cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Hero — impacto visual: imagen de fondo, velo, texto con brillo, barra inferior */
.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: min(92vh, 900px);
}

.hero--impact {
  background: #08080a;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(92vh, 900px);
}

.hero__img--cover {
  width: 100%;
  height: 100%;
  min-height: min(92vh, 900px);
  object-fit: cover;
  object-position: 55% 42%;
  transform: scale(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 6, 10, 0.94) 0%,
    rgba(10, 10, 18, 0.78) 42%,
    rgba(18, 12, 16, 0.35) 72%,
    rgba(30, 10, 12, 0.2) 100%
  );
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% 45%, rgba(217, 4, 21, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(255, 90, 100, 0.12) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__inset {
  pointer-events: auto;
  position: absolute;
  right: min(5%, 3.5rem);
  top: clamp(5.5rem, 14vh, 8rem);
  width: min(300px, 30vw);
  max-width: 100%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.15) inset,
    0 28px 50px -12px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(2.2deg) translateZ(0);
  z-index: 2;
  animation: heroFloat 12s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero__inset {
    display: none;
  }

  .hero__veil {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 10, 0.92) 0%,
      rgba(6, 6, 10, 0.7) 45%,
      rgba(6, 6, 10, 0.5) 100%
    );
  }

  .hero__img--cover {
    object-position: 60% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inset {
    animation: none;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: rotate(2.2deg) translateY(0) translateZ(0);
  }
  50% {
    transform: rotate(1.5deg) translateY(-6px) translateZ(0);
  }
}

.hero__img--inset {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero__shell {
  position: relative;
  z-index: 3;
  min-height: min(90vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(5.2rem, 10vw, 6.5rem) 0 clamp(1.25rem, 3.5vw, 2rem);
  pointer-events: none;
  gap: 1.5rem;
}

.hero__shell > * {
  pointer-events: auto;
}

.hero__inner {
  max-width: 40rem;
}

.hero--impact .eyebrow {
  color: #ffb0b5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.eyebrow--on-dark::before {
  background: linear-gradient(90deg, #ff5c64, rgba(255, 255, 255, 0.2));
  width: 2.25rem;
  height: 2px;
}

.hero--impact .hero__title {
  font-size: clamp(2.15rem, 5.2vw, 3.45rem);
  line-height: 1.04;
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  animation: fadeInUp 0.85s ease 0.05s both;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__title-line {
  font-size: clamp(0.8rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.35;
  max-width: 30ch;
}

.hero__title-pop {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.1;
  font-weight: 800;
  font-size: 1.02em;
}

.hero__title-sep,
.hero__title-sep2 {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin: 0 0.08em;
  font-size: 0.85em;
}

.text-pop {
  color: #ff4d5a;
  text-shadow:
    0 0 32px rgba(255, 60, 75, 0.85),
    0 0 64px rgba(217, 4, 21, 0.35),
    0 2px 0 #8b0610;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  padding: 0 0.02em;
}

.text-accent {
  color: var(--accent-2);
  text-shadow: 0 0 20px var(--glow);
}

.hero--impact .hero__lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.6;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero--impact .hero__lead strong {
  color: #fff;
  font-weight: 700;
}

.hero--impact .hero__lead em {
  color: #ffc9cc;
  font-style: normal;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-mid);
  margin: 0 0 1.1rem;
  animation: fadeInUp 0.8s ease both;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 1px;
}

.btn--glow {
  box-shadow: 0 0 0 0 rgba(255, 60, 75, 0.5), 0 6px 28px rgba(217, 4, 21, 0.45) !important;
  animation: btnPulse 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn--glow {
    animation: none;
  }
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 60, 75, 0.35), 0 6px 28px rgba(217, 4, 21, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 60, 75, 0.12), 0 10px 40px rgba(217, 4, 21, 0.45);
  }
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 1.35rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn__icon {
  font-size: 1.1rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent-2) 0%, #9f0712 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 24px var(--accent-soft);
}

.btn--primary:hover {
  background: linear-gradient(145deg, var(--accent-hover) 0%, var(--accent-2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(217, 4, 21, 0.22);
}

.btn--ghost {
  background: #fff;
  color: var(--text-strong);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 6, 19, 0.04);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero--impact .hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero--impact .meta__text .mono {
  color: #ff8e96;
}

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero--impact .icon--meta {
  color: #ff6b75;
  filter: drop-shadow(0 0 8px rgba(255, 60, 75, 0.45));
}

.icon--meta {
  color: var(--accent-2);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Barra inferior: estadística + chips sobre vidrio */
.hero__deck {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: auto;
  margin-bottom: 0.25rem;
  padding: 1.1rem 1.2rem 1.15rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero__card-stat {
  flex: 0 0 auto;
  padding: 0.2rem 1.15rem 0.35rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 7.5rem;
}

@media (max-width: 600px) {
  .hero__card-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.9rem;
    width: 100%;
  }
}

.stat-card {
  position: relative;
  z-index: 1;
}

.stat-card__n {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__deck .stat-card__n {
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 60, 75, 0.35);
}

.stat-card__l {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28ch;
}

.hero__deck .stat-card__l {
  color: rgba(255, 255, 255, 0.68);
  max-width: 12rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.45rem;
  align-content: center;
  position: relative;
  z-index: 1;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem 0.4rem 0.5rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  animation: chipIn 0.55s ease both;
}

.icon--chip {
  font-size: 1.05rem;
  color: #ff6b75;
  flex-shrink: 0;
  opacity: 1;
}

.hero__chips li:nth-child(1) { animation-delay: 0.05s; }
.hero__chips li:nth-child(2) { animation-delay: 0.1s; }
.hero__chips li:nth-child(3) { animation-delay: 0.15s; }
.hero__chips li:nth-child(4) { animation-delay: 0.2s; }
.hero__chips li:nth-child(5) { animation-delay: 0.25s; }
.hero__chips li:nth-child(6) { animation-delay: 0.3s; }

.hero__chips li:hover {
  border-color: rgba(255, 80, 90, 0.45);
  background: rgba(217, 4, 21, 0.15);
  transform: translateY(-1px);
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Sections */
.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.section--tight {
  padding: 2.5rem 0 3.5rem;
}

.section--alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  margin-bottom: 2.25rem;
  max-width: 720px;
}

.section__title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.section__kicker {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 58ch;
}

.section__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-mid);
  margin: 0 0 0.5rem;
}

.container.narrow .section__label {
  margin-bottom: 0.45rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose strong,
.panel p strong,
.feature p strong,
.cta__text strong,
.faq p strong,
.timeline p strong {
  color: var(--text-strong);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split--media {
  align-items: stretch;
  gap: 2.25rem;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.media-block {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.media-block--tall {
  min-height: 200px;
}

.media-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem 0.55rem 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.bullets .icon--bullet {
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

#quienes .bullets {
  margin-top: 1.5rem;
  max-width: none;
}

/* Services grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.35rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.35rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow 0.4s ease, transform 0.35s ease;
}

.card--service {
  border-left: 3px solid rgba(217, 4, 21, 0.35);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.card--service:hover {
  border-color: rgba(217, 4, 21, 0.22);
  border-left-color: var(--accent-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.card__icon {
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.4rem;
  background: linear-gradient(145deg, var(--accent) 0%, #9f0712 100%);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(217, 4, 21, 0.28);
}

.card__icon .material-symbols-outlined {
  font-size: 1.28rem;
  color: #fff;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.card__title {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}

.card__text {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card__text--sub {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted-faint);
}

/* Banda con foto */
.section-band {
  max-width: 1140px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.section-band__inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.section-band__photo {
  width: 100%;
  height: min(32vh, 280px);
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

/* Sectors */
.grid-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-sectors {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: linear-gradient(180deg, #fff 0%, #fafaf9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent) 0%, #f87171 100%);
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.panel__fig {
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.panel__fig img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .panel:hover .panel__fig img {
    transform: scale(1.04);
  }
}

.panel p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.panel p:last-of-type:not(.panel__foot) {
  margin-bottom: 0.6rem;
}

.panel__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.7rem;
  color: var(--text-strong);
  padding: 1.1rem 1.35rem 0;
}

.panel__foot {
  margin-top: 0.25rem;
  margin-bottom: 1.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-mid);
  font-weight: 700;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(228, 228, 231, 0.9) 100%);
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-left: 0.25rem;
  align-items: start;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__step {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.timeline__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.icon--time {
  color: var(--accent-2);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features */
.grid-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .grid-features {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 1.35rem 1.25rem 1.3rem 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
  position: relative;
  padding-top: 2.85rem;
}

.feature__icon {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  color: var(--accent-2);
  font-size: 1.55rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  opacity: 0.9;
}

.feature:hover {
  border-color: rgba(227, 6, 19, 0.25);
}

.feature__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-strong);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* FAQ */
.faq {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: rgba(227, 6, 19, 0.35);
}

.faq__item summary {
  padding: 1rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text-strong);
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

/* CTA + Form */
.cta {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(217, 4, 21, 0.04) 0%, #fff 38%, #f4f3f2 100%);
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 4, 21, 0.2), transparent);
  pointer-events: none;
}

.cta__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 1rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
  }
}

.cta__title {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.cta__text {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form__row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__row--full {
  grid-column: 1 / -1;
}

.form__actions {
  grid-column: 1 / -1;
  margin: 0;
}

.form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-strong);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form__actions .btn {
  width: 100%;
  border: 0;
}

.form__hint {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 2.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.footer__name {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--text-strong);
}

.footer__rs {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.45;
}

.footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-faint);
  max-width: 52ch;
  line-height: 1.45;
}

.footer__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer__nav a:hover {
  color: var(--accent-mid);
}

@media (max-width: 600px) {
  .form {
    grid-template-columns: 1fr;
  }
}
