@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --orange: #f1592a;
  --orange-deep: #d94418;
  --orange-bright: #ff6b35;
  --orange-soft: #ff8a5c;
  --ink: #0c0c0e;
  --paper: #fff7f2;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --font: "Montserrat", Helvetica, Arial, sans-serif;
  --radius: 22px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

picture {
  display: contents;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 8px;
  top: 8px;
}

/* ---- Nav ---- */
.topnav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.topnav.is-solid {
  background: rgba(12, 12, 14, 0.88);
  backdrop-filter: blur(12px);
}

.topnav__logo {
  width: min(148px, 42vw);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topnav__link {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.topnav__link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topnav__link--solid {
  background: var(--orange);
  border-color: var(--orange);
}

.topnav__link--solid:hover {
  background: var(--orange-bright);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 42%, rgba(0, 0, 0, 0.15), transparent 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(12, 12, 14, 0.92) 100%);
}

.hero__content {
  width: min(100% - 32px, 760px);
  text-align: center;
  padding: 120px 0 72px;
}

.hero__brand {
  width: min(420px, 78vw);
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.35));
  animation: riseIn 0.9s var(--ease) both;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.92;
  animation: riseIn 0.9s var(--ease) 0.08s both;
}

.hero__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
  animation: pulse 1.8s ease infinite;
}

.hero__title {
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  animation: riseIn 0.95s var(--ease) 0.12s both;
}

.hero__lead {
  margin: 18px auto 0;
  max-width: 36ch;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  animation: riseIn 0.95s var(--ease) 0.2s both;
}

.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: riseIn 0.95s var(--ease) 0.28s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--primary {
  background: #fff;
  color: var(--orange-deep);
}

.btn--primary:hover {
  background: #fff4ee;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: #1a1a1e;
}

.hero__freqs {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  animation: riseIn 1s var(--ease) 0.36s both;
}

.freq-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.freq-pill strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: clamp(64px, 10vw, 110px) clamp(16px, 4vw, 36px);
}

.section__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section p.lead {
  margin-top: 14px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 46ch;
  color: rgba(12, 12, 14, 0.78);
}

/* About */
.about {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.about h2 {
  color: #fff;
}

.about__copy p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42ch;
  font-size: 1.02rem;
}

.about__years {
  margin-top: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about__years strong {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}

.about__years span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 12ch;
  line-height: 1.25;
  opacity: 0.9;
}

.about__visual {
  position: relative;
}

.about__visual figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
}

.about__visual img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: -10px;
  bottom: 24px;
  background: #fff;
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Alcance */
.alcance {
  background: #fff;
}

.alcance__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 36px;
}

.alcance__photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(241, 89, 42, 0.18);
}

.alcance__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

.pillars {
  display: grid;
  gap: 14px;
}

.pillar {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7f2, #ffffff);
  border: 1px solid rgba(241, 89, 42, 0.14);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(241, 89, 42, 0.12);
}

.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
}

.pillar__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.pillar h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pillar p {
  margin-top: 4px;
  color: rgba(12, 12, 14, 0.7);
  font-size: 0.92rem;
}

/* Multimedio */
.multi {
  background: var(--ink);
  color: #fff;
}

.multi .eyebrow {
  color: var(--orange-soft);
}

.multi .lead {
  color: rgba(255, 255, 255, 0.78);
}

.mosaic {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, 1fr);
  gap: 12px;
}

.mosaic__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 180px;
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mosaic__item:hover img {
  transform: scale(1.06);
}

.mosaic__item--text {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: var(--orange);
}

.mosaic__item--text.alt {
  background: #ffb020;
  color: var(--ink);
}

.mosaic__item--text h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mosaic__item--wide {
  grid-column: span 2;
}

.mosaic__item--tall {
  grid-row: span 2;
}

/* Marca */
.marca {
  background: var(--orange);
  color: #fff;
}

.marca .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.marca__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.marca .lead {
  color: rgba(255, 255, 255, 0.92);
}

.service-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.service-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

/* Audiencia (única sección: perfil + datos) */
.audiencia {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}

.audiencia .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.audiencia .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 42ch;
}

.audiencia__intro .big-plus {
  margin-top: 20px;
}

.audiencia .big-plus strong {
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.audiencia .big-plus span {
  color: rgba(255, 255, 255, 0.8);
}

.audiencia__body {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  font-size: clamp(2.2rem, 10vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.3;
}

.growth {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.growth__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.growth__item svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-top: 2px;
}

.audiencia__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.audiencia__photos figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.audiencia__photos img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.big-plus {
  display: flex;
  align-items: center;
  gap: 12px;
}

.big-plus strong {
  font-size: clamp(3rem, 14vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.big-plus span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 9ch;
  line-height: 1.3;
}

/* Club */
.club {
  background: var(--ink);
  color: #fff;
}

.club .eyebrow {
  color: var(--orange-soft);
}

.club__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.club__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(241, 89, 42, 0.35));
}

.club__heading h2 {
  margin: 0;
  line-height: 1.05;
}

.club__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.club .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
}

.tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(241, 89, 42, 0.18);
  border: 1px solid rgba(241, 89, 42, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.club__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.club__visual {
  display: grid;
  place-items: center;
}

.club__visual figure {
  margin: 0;
  width: min(100%, 280px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(241, 89, 42, 0.22);
}

.club__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* CTA final */
.cta {
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.cta h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.cta p {
  margin: 14px auto 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.92);
}

.cta__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer — mismo crédito SIS Argentina que la home */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: #09090b;
  padding: 28px clamp(16px, 4vw, 36px) 24px;
}

.footer-legal {
  color: #8a8a8a;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a8a8a;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  transition: color 0.28s ease;
}

.credit:hover {
  color: #c4c4c4;
}

.credit strong {
  color: #d0d0d0;
  font-weight: 700;
}

.credit-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(77, 148, 200, 0.35));
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(0, -1.5%, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 6px);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .audiencia__body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
  }

  .audiencia__photos {
    gap: 12px;
  }

  .club__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }

  .club__logo {
    width: 72px;
    height: 72px;
  }

  .club__visual figure {
    width: min(100%, 320px);
  }
}

@media (max-width: 900px) {
  .about__grid,
  .alcance__grid,
  .marca__layout,
  .club__grid {
    grid-template-columns: 1fr;
  }

  .about__visual figure {
    transform: none;
    max-width: 420px;
    margin-inline: auto;
  }

  .about__badge {
    left: 12px;
  }

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

  .mosaic__item--wide,
  .mosaic__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .alcance__photo {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .topnav__link:not(.topnav__link--solid) {
    display: none;
  }

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

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

  .hero__freqs {
    flex-direction: column;
    align-items: stretch;
  }

  .club__heading {
    gap: 10px;
  }

  .club__logo {
    width: 48px;
    height: 48px;
  }

  .club__actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 6px);
  }

  .club__actions .btn--primary {
    flex: 1 1 100%;
  }

  .section {
    padding: 52px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
