/* Equipo Page - EXACT Screenshot Restoration */



/* Banner Harmonization */
.banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background: url('../assets/banner.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.team-section {
  padding: 4rem 1rem;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.team-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header styled exactly like screenshot */
.team-role-title, .team-group-title {
  font-size: 1.8rem;
  color: #ff9800;
  text-transform: uppercase;
  margin: 3rem 0 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.team-role-title::after, .team-group-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ff9800;
  margin: 0.5rem auto;
}

/* Card exactly like screenshot */
.team-member-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 600px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-member-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Circle photo with orange border */
.team-member-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #e0e0e0 url('../assets/Logo.png') no-repeat center center;
  background-size: 40%;
  border: 3px solid #ff9800; /* Orange border as in screenshot */
  flex-shrink: 0;
}

.team-member-details h3 {
  font-size: 1.4rem;
  color: #222;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.team-member-role {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

@media (max-width: 600px) {
  .team-member-info {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
