* {
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

a, button, .btn, .area-card {
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

body {
  padding-top: 80px;
}

.equipo-header {
  background: white;
  padding: 6rem 0 3rem;
  position: relative;
  margin-bottom: 3rem;
}

.wave-separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  filter: drop-shadow(0 -2px 10px rgba(74, 158, 232, 0.2));
}

.equipo-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
  background: linear-gradient(90deg, 
    #2d7ac4 0%, 
    #4a9ee8 30%, 
    #7ec0f2 50%, 
    #4a9ee8 70%, 
    #2d7ac4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wave 5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(74, 158, 232, 0.4));
  letter-spacing: 0.05em;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.equipo-description {
  padding: 3rem 0;
  animation: fadeInUp 1s ease-out;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, 
    #2d7ac4 0%, 
    #4a9ee8 30%, 
    #7ec0f2 50%, 
    #4a9ee8 70%, 
    #2d7ac4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wave 5s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.description-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.description-text.important {
  background: rgba(74, 158, 232, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  margin-top: 2rem;
}

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

.equipo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(74, 158, 232, 0.3);
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

.equipo-link-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 158, 232, 0.5);
}

.equipo-link-btn svg {
  width: 20px;
  height: 20px;
}

.postulaciones {
  padding: 3rem 0;
  background: white;
}

.postulaciones-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.postulaciones-subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-blue);
  margin-bottom: 1.5rem;
}

.postulaciones-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
  margin-bottom: 2rem;
}

.requirements-box {
  max-width: 700px;
  margin: 2rem auto;
  background: linear-gradient(135deg, rgba(74, 158, 232, 0.1), rgba(95, 195, 228, 0.1));
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(74, 158, 232, 0.3);
}

.requirements-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-blue);
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.icon-search {
  color: var(--primary-color);
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: 0.5rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-check {
  color: #4caf50;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.warning-box {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 193, 7, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.warning-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
}

.warning-icon svg {
  color: #ffc107;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.warning-box p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.postulaciones-cta {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-dark);
  margin-top: 2rem;
  line-height: 1.8;
}

.postulaciones-cta-strong {
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 1rem;
}

.areas-postulacion {
  padding: 4rem 0;
  background: white;
}

.vacantes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vacantes-header h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-blue);
}

.areas-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.area-card {
  background: white;
  padding: 2rem;
  width: 280px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 2px solid rgba(74, 158, 232, 0.2);
  box-shadow: 0 5px 20px rgba(74, 158, 232, 0.1);
  cursor: url('multimedia/cursor_1761242313331.cur'), auto;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 158, 232, 0.3);
  border-color: var(--primary-color);
}

.area-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.area-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 158, 232, 0.1), rgba(95, 195, 228, 0.1));
  border-radius: 50%;
  padding: 1rem;
}

.area-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(74, 158, 232, 0.3));
}

.area-card h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .equipo-header {
    padding: 4rem 0 2rem;
    margin-bottom: 2rem;
  }

  .wave-separator svg {
    height: 50px;
  }

  .equipo-links {
    flex-direction: column;
    align-items: center;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .description-text {
    text-align: left;
  }

  .warning-box {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title,
  .equipo-title,
  .description-text,
  .postulaciones-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .equipo-header {
    padding: 3rem 0 1.5rem;
    margin-bottom: 1.5rem;
  }

  .wave-separator svg {
    height: 35px;
  }

  .description-text,
  .intro-text,
  .warning-text,
  .area-card p,
  .area-card h4,
  .equipo-link,
  .section-title,
  .equipo-title,
  .postulaciones-text,
  .postulaciones-subtitle {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .container {
    padding: 0 0.75rem;
  }
}
