/*NUEVA SECCIÓN: EQUIPO */
#equipo {
  background: #ffffff;
  position: relative;
  width: 100%;
  padding-bottom: 120px;
}

/* Contenedor de la línea decorativa superior */
.equipo-line-container {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  top: -8px;
}

.equipo-top-bar {
  width: 80%;
  height: 1rem;
  background: #dad3cf;
  margin-bottom: -0.5rem;
}

.equipo-banner {
  width: 100%;
  display: block;
}

.equipo-banner img {
  width: 100%;
  height: auto;
  max-height: 700px;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.equipo-grid {
  max-width: 1512px;
  margin: 80px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 8rem);
}

.member-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.member-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.coral-badge {
  width: 24px;
  height: 6px;
  background-color: #FFC3B9;
  flex-shrink: 0;
}

.member-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B1918;
  letter-spacing: -0.01em;
}

.member-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #B5A89F;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.member-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3F3B38;
  margin-bottom: 30px;
}

/* Botón Ver Perfil */
.btn-perfil {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: #425464;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.btn-perfil:hover {
  color: var(--coral);
}

.btn-perfil .material-symbols-rounded {
  font-size: 24px;
}


/* RESPONSIVE */

@media (max-width: 960px) {
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
    margin-top: 48px;
  }

  .equipo-banner img {
    min-height: 220px;
    max-height: 400px;
  }

  .member-card {
    margin: 0 auto;
    max-width: unset;
  }
}