@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');

body.page-nosotros {
  --page-bg: #050505;
  --accent: #e10600;
  background-color: var(--page-bg);
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body.page-nosotros main,
body.page-nosotros section {
  background-color: transparent;
}

body.page-nosotros section {
  padding: clamp(70px, 10vh, 120px) 6%;
}

.about-container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.about-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #020202;
}

.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 52%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: calc(var(--nav-h) + 70px) 8% 140px;
}

.about-hero__title {
  margin: 0;
  font-family: var(--brand-font);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 999px;
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

.scroll-indicator:hover {
  opacity: 0.85;
  transform: translateX(-50%) translateY(-2px);
}

@keyframes scroll-bounce {
  0% {
    transform: translateY(-8px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(-8px);
    opacity: 0.2;
  }
}

.about-manifesto {
  text-align: center;
  padding: clamp(90px, 16vh, 150px) 8%;
}

.section-kicker {
  font-family: var(--brand-font);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 22px;
}

.manifesto-text {
  margin: 0 auto;
  max-width: 820px;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 760px;
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--brand-font);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.section-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.about-bento {
  padding-top: clamp(70px, 10vh, 120px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 16px;
  grid-auto-flow: dense;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.bento-item:hover img {
  transform: scale(1.06);
}

.bento-item--xl {
  grid-column: span 7;
  grid-row: span 4;
}

.bento-item--tall {
  grid-column: span 5;
  grid-row: span 5;
}

.bento-item--wide {
  grid-column: span 6;
  grid-row: span 3;
}

.bento-item--small {
  grid-column: span 4;
  grid-row: span 3;
}

.bento-item--medium {
  grid-column: span 5;
  grid-row: span 3;
}

.bento-item--tiny {
  grid-column: span 3;
  grid-row: span 2;
}

.about-data {
  padding: 0;
}

.data-strip { 
 /* background: var(--accent);*/
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  align-items: center;
  padding: clamp(40px, 8vh, 60px) 0;
}

.data-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.data-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.data-icon svg {
  width: 26px;
  height: 26px;
}

.data-value {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.data-label {
  font-size: 0.78rem;
  opacity: 0.95;
}

.about-cta {
  position: relative;
  padding: 0;
  min-height: clamp(360px, 60vh, 520px);
  display: flex;
  align-items: stretch;
  background-image: url("../../images/athletes/AthleteImage.jpg");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 2, 2, 0.9) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}


.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(20px, 6vw, 60px);
  padding: clamp(90px, 16vh, 150px) 6%;
}

.cta-text {
  max-width: 560px;
}

.cta-kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-title {
  margin: 0 0 18px;
  font-family: var(--brand-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 0.9;
}

.cta-title span {
  display: inline-block;
  margin-right: 0.12em;
  transform: none;
  font-style: italic;
}

.cta-title span:nth-child(2) {
  transform: none;
}

.cta-title span:nth-child(3) {
  transform: none;
}

.cta-title span:nth-child(4),
.cta-title span:nth-child(5) {
  color: #ffffff;
}

.cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.cta-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

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

.cta-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px 18px 44px;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: italic;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 10px 24px rgba(0, 0, 0, 0.55);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%, 4% 60%, 0 40%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-shadow: none;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  clip-path: inherit;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -50% -40%;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.22) 50%, transparent 72%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 16px 30px rgba(0, 0, 0, 0.65);
  filter: none;
}

.cta-button:hover::after,
.cta-button:focus-visible::after {
  transform: translateX(120%) skewX(-18deg);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .cta-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

body.page-nosotros .site-footer {
  position: relative;
  z-index: 2;
  background-color: #000000;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .bento-item,
  .bento-item--xl,
  .bento-item--tall,
  .bento-item--wide,
  .bento-item--small,
  .bento-item--medium,
  .bento-item--tiny {
    grid-column: span 2;
    grid-row: span 2;
  }

  .data-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .about-hero__content {
    padding: calc(var(--nav-h) + 40px) 7% 120px;
  }

  .scroll-indicator {
    display: none;
  }

  .data-item {
    flex-direction: column;
  }
}
