/* About Us Page Styles - Estilo Cinematográfico */

/* About Hero cinematográfico */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 77, 77, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
  pointer-events: none;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #ff4d4d 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
}

.about-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section cinematográfica */
.about-section {
  padding: 8rem 0;
  background: rgba(26, 26, 26, 0.8);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.5), transparent);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 77, 77, 0.2);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 77, 77, 0.3);
  border-color: #ff4d4d;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 77, 77, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Team Section cinematográfica */
.team-section {
  padding: 8rem 0;
  background: rgba(26, 26, 26, 0.8);
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.5), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #ff4d4d 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 77, 77, 0.2);
  position: relative;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff6b6b 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.3);
  border-color: #ff4d4d;
}

.team-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
}

.team-info p {
  color: #ff4d4d;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.2);
}

.social-links a:hover {
  color: white;
  background: #ff4d4d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

/* Values Section cinematográfica */
.values-section {
  padding: 8rem 0;
  background: rgba(26, 26, 26, 0.8);
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.5), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 77, 77, 0.2);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff6b6b 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.2);
  border-color: #ff4d4d;
}

.value-icon {
  font-size: 3.5rem;
  color: #ff4d4d;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}

.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: white;
  font-weight: 600;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

/* Animaciones cinematográficas */
@keyframes titleGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive cinematográfico */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 80%;
    margin: 0 auto 2rem;
  }

  .about-content {
    padding: 0 1rem;
  }

  .about-hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    min-height: 450px;
  }

  .about-hero h1 {
    font-size: 2.8rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 50vh;
    min-height: 400px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .team-info {
    padding: 1.5rem;
  }
}
