.perfil {
  padding: 120px 60px;
  background: #01001a;

  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

.perfil.visible {
  opacity: 1;
  transform: translateY(0);
}

.perfil-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP */

.perfil-top {
  display: flex;
  align-items: center;
  gap: 80px;

  margin-bottom: 80px;
}

/* IMAGEN */

.perfil-img img {
  width: 280px;
  height: 280px;
  object-fit: cover;

  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* INFO */

.perfil-info {
  max-width: 600px;
}

.perfil-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 15px;

  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perfil-rol {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ccc;

  margin-bottom: 20px;

  text-transform: uppercase;
}

.perfil-descripcion {
  color: #aaa;
  line-height: 1.7;

  margin-bottom: 30px;
}

/* DATOS */

.perfil-datos {
  display: flex;
  gap: 40px;
}

.perfil-datos span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #777;
  text-transform: uppercase;
}

.perfil-datos p {
  font-size: 1.2rem;
  margin-top: 5px;
}

/* TITULO */

.sponsors-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;

  margin-bottom: 35px;

  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */

.patrocinadores {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

/* BOX */

.patro-box {
  text-decoration: none;
  color: white;

  overflow: hidden;

  border-radius: 24px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

  transition: all .45s ease;
}

.patro-box:hover {
  transform: translateY(-8px);

  border-color: rgba(212,175,55,0.45);

  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

/* IMAGEN BOX */

/* IMAGEN BOX */

.patro-box img {
  width: 100%;
  height: 320px; /* MÁS ALTAS EN PC */
  object-fit: cover;

  display: block;
}

/* RESPONSIVE */

@media(max-width: 900px) {

  .patro-box img {
    height: 220px; /* MÁS PEQUEÑAS EN MOBILE */
  }

}

/* TOP */

.perfil-top {
  display: flex;
  align-items: center;
  gap: 80px;

  margin-bottom: 140px; /* MÁS ESPACIO ENTRE DIORÉN Y LAS CAJAS */
}

/* TITULO */

.sponsors-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;

  margin-bottom: 60px; /* MÁS ESPACIO ENTRE TITULO Y CAJAS */

  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perfil-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:50px;
  padding:16px 34px;

  border-radius:100px;

  text-decoration:none;

  font-size:0.82rem;
  letter-spacing:2px;
  text-transform:uppercase;

  color:#f5f5f5;

  background:linear-gradient(
    135deg,
    #0b0b1f,
    #1a1a40,
    #8c6a1f
  );

  border:1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 20px rgba(212,175,55,0.08);

  transition:all .45s ease;
}

.perfil-btn:hover{
  transform:translateY(-4px);

  background:linear-gradient(
    135deg,
    #11112b,
    #232352,
    #b68a2a
  );

  border-color:rgba(212,175,55,0.5);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.55),
    0 0 28px rgba(212,175,55,0.18);

  letter-spacing:3px;
}
/* CONTENT */

.patro-content {
  padding: 25px;
}

.patro-content span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #777;
}

.patro-content h3 {
  margin: 14px 0 12px;

  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;

  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.patro-content p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.92rem;
}

/* RESPONSIVE */

@media(max-width: 900px) {

  .perfil-container {
    text-align: center;
  }

  .perfil-top {
    flex-direction: column;
  }

  .perfil-img img {
    width: 200px;
    height: 200px;
  }

  .perfil-datos {
    justify-content: center;
    flex-wrap: wrap;
  }

  .patrocinadores {
    grid-template-columns: 1fr;
  }

}