/* === CSS (assets/css/style.css) === */
@font-face {
  font-family: 'Monument';
  src: url('../fonts/MonumentExtended-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaas';
  src: url('../fonts/NeueHaasGroteskText-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'NeueHaas', sans-serif;
  background: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #000000e0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.nav-logo {
  height: 40px;
  filter: invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'NeueHaas', sans-serif;
}

.nav-links {
  display: none;
}


#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 6rem;
  left: 2rem;
  z-index: 10;
  max-width: calc(100% - 2rem);
}

.hero-overlay img {
  width: 360px;
  filter: invert(1);
  display: block;
  max-width: 100%;
}

section {
  padding: 5rem 2rem;
  text-align: center;
}

h1, h2 {
  font-family: 'Monument', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.about-section h2,
#talents > h2 {
  font-size: 3.5rem !important; /* Ajustá a tu gusto */
  font-family: 'Monument', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .about-section h2, #talents h2 {
    font-size: 2rem;
  }
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.metrics div {
  background: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.metric-icon {
  width: 32px;
  margin-bottom: 0.5rem;
  filter: invert(1);
}

.metrics strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Monument', sans-serif;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  justify-items: center;
}

/* Fuerza 8 columnas solo en pantallas grandes */
@media screen and (min-width: 1200px) {
  .talent-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.talent-grid .card {
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.talent-grid .card img {
  width: 100%;
  height: 260px; /* Ajustá según tu preferencia visual */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}


.talent-grid .card p {
  margin: 0;
  font-family: 'NeueHaas', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.talent-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}


/* Hover effect */
.talent-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}


.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: center;
  padding-top: 2rem;
}

.brands-grid img {
  width: 100%;
  max-width: 180px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brands-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .brands-grid img {
    max-width: 140px;
    height: 80px;
  }
}


footer {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  font-family: 'NeueHaas', sans-serif;
}

@media screen and (max-width: 768px) {
  .metrics {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero-overlay {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .nav-logo {
    max-width: 80%;
    height: auto;
  }
}
.about-section {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-family: 'Monument', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.about-section p {
  font-family: 'NeueHaas', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  white-space: pre-line;
}
.about-section h2 {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.highlight {
  color: #f1c40f;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .about-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .about-section {
    padding: 3rem 1rem;
  }
}
.talent-profile {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.talent-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

.talent-image img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  display: block;
}

.talent-info {
  padding: 2rem;
  flex: 1;
  color: #fff;
}

.talent-info h1 {
  font-family: 'Monument', sans-serif;
  margin-bottom: 1rem;
}

.talent-socials a {
  display: inline-block;
  margin-right: 1rem;
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
}
.talent-container {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.talent-image img {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeImg 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeImg {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.talent-info {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeText 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeText {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.talent-image img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.talent-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.talent-profile {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.talent-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.talent-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}
.talent-info h1 {
  font-family: 'Monument', sans-serif;
  font-size: 2rem; /* Aumenta el tamaño */
  margin-bottom: 1rem;
  text-align: center;
}

.talent-info p {
  font-family: 'NeueHaas', sans-serif;
  font-size: 1.2rem; /* Un poco más grande */
  line-height: 1.7;
  color: #ccc;
  text-align: center;
}

.talent-socials {
  margin-top: 1.5rem;
  text-align: center;
}

.talent-socials a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
.talent-socials a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.talent-socials a:hover {
  color: #ffffff; /* Cambia a blanco al pasar el mouse */
  transform: scale(1.1); /* Pequeño zoom */
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.7); /* Glow dorado */
}
.talent-grid .card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.talent-grid .card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}

/* Capa de sombreado */
.talent-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

/* Texto Ver Perfil centrado */
.talent-grid .card::after {
  content: "Ver perfil";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8); /* 🔹 Empieza un poco más chico */
  color: #f7f7f8; /* Blanco */
  font-size: 1.5rem; /* Más grande */
  font-weight: 900;   /* Negrita máxima */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease; /* 🔹 Animación de opacidad + zoom */
  pointer-events: none;
  text-shadow: 
    -2px -2px 0 rgb(31, 44, 223),
     2px -2px 0 rgb(31, 44, 223),
    -2px  2px 0 rgb(31, 44, 223),
     2px  2px 0 rgb(31, 44, 223); /* 🔹 Contorno azul */
}

/* Hover activa sombra y texto */
.talent-grid .card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); /* 🔹 Hace el pequeño zoom */
}


/* Hover activa sombra y texto */
.talent-grid .card:hover::before,
.talent-grid .card:hover::after {
  opacity: 1;
}

.talent-grid .card:hover img {
  transform: scale(1.05);
}

/* Nombre debajo */
.talent-grid .card p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
.view-profile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  font-weight: bold;
  color: white; /* 👈 blanco */
  text-shadow: 
    -2px -2px 0 rgb(31, 44, 223),
     2px -2px 0 rgb(31, 44, 223),
    -2px  2px 0 rgb(31, 44, 223),
     2px  2px 0 rgb(31, 44, 223);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}


.card:hover .view-profile {
  opacity: 1;
}


.card img {
  transition: filter 0.3s ease;
}

.card:hover img {
  filter: brightness(0.5); /* Oscurece la imagen en hover */
}

