/* === Estilos Generales === */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
  }
  
  /* === Header === */
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    background: transparent;
    z-index: 10;
    display: flex;
    align-items: center;
  }
  
  .navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
  }
  
  nav {
    margin-left: auto;
    width: 50%;
    display: flex;
    justify-content: flex-start;
  }
  
  .logo {
    width: 100px;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 80px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  
  nav ul li a:hover {
    color: #d4af37;
  }
  
  /* === Hero Section === */
  .hero {
    background-image: url('../images/fotoinicio.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-text {
    color: #d4af37;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  /* === Noticias === */
  /* === Noticias === */
/* === Sección de Noticias === */
.news-section {
  padding: 100px 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.news {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.news img {
  width: 100%;
  border-radius: 12px;
}

.news-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #d4af37; /* Dorado */
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.news-title:hover {
  color: #fff; /* Opcional: blanco al pasar el ratón */
}

/* === Sección Sobre Nosotros (Imagen de fondo) === */
.about-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('../images/sobrenosotros.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  background-color: rgba(0, 0, 0, 0.6); /* Fondo negro semitransparente */
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
}

.about-text h2 {
  margin: 0;
  font-size: 2.5rem;
  color: #d4af37; /* Dorado */
}

/* === Detalle de Sobre Nosotros (Texto largo + Iconos) === */
.about-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 40px;
  position: sticky;
  top: 120px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(32%) saturate(703%) hue-rotate(7deg) brightness(94%) contrast(85%);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.about-text-content {
  max-width: 800px;
}

.about-text-content h2 {
  font-size: 2.5rem;
  color: #d4af37; /* Dorado */
  margin-bottom: 20px;
}

.about-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d4af37; /* Dorado para el texto largo también */
}

.evolution-section {
  padding: 100px 40px;
  text-align: center;
}

.evolution-section h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 50px;
}

.evolution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.evolution-step {
  background: rgba(255, 215, 0, 0.05); /* Fondo muy leve dorado */
  padding: 20px;
  border-radius: 10px;
}

.evolution-step h3 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.evolution-step p {
  font-size: 1.1rem;
  color: #ccc;
}

.highlight {
  color: #ffffff; /* Blanco para destacar palabras clave */
  font-weight: bold;
}

/* === Casos de Éxito === */
.success-section {
  padding: 100px 40px;
  text-align: center;
}

.success-section h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 50px;
}

/* Contenedor del slider */
.slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Cada testimonio */
.slide {
  display: none;
  background-color: rgba(255, 215, 0, 0.05);
  padding: 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  color: #ccc;
}

/* Testimonio activo */
.slide.active {
  display: block;
}

/* Botones de navegación */
.slider-buttons {
  margin-top: 20px;
}

.slider-buttons button {
  background-color: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.slider-buttons button:hover {
  background-color: #d4af37;
  color: #0a0a0a;
}

/* --- Cambios solo a partir de aquí --- */

.empleos-section {
  padding: 50px 20px;
  background-color: #0d0d0d; /* Fondo negro */
  text-align: center;
}

.empleos-section h2 {
  font-size: 36px; /* Más grande */
  color: #d4af37; /* Dorado */
  margin-bottom: 30px;
}

.empleos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.empleo-card {
  background-color: #1a1a1a; /* Tarjetas oscuras */
  border: 2px solid #d4af37; /* Borde dorado */
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff; /* Texto blanco */
}

.empleo-card:hover {
  background-color: #222; /* Cambio sutil al pasar el ratón */
  border-color: #d4af37; /* Mantener dorado */
}

.empleo-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #ffffff; /* Título blanco */
}

.empleo-detalles {
  margin-top: 15px;
  text-align: left;
}

.empleo-detalles ul {
  margin: 10px 0;
  padding-left: 20px;
}

.upload-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #d4af37; /* Botón dorado */
  color: #0a0a0a; /* Texto del botón negro */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.upload-button:hover {
  background-color: #b99625; /* Botón dorado más oscuro al pasar el ratón */
}

.contacto-section {
  padding: 50px 20px;
  background-color: #0d0d0d; /* Fondo negro */
  text-align: center;
}

.contacto-section h2 {
  font-size: 38px; /* Más grande y potente */
  color: #d4af37; /* Dorado */
  margin-bottom: 10px;
  position: relative;
}

.contacto-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 15px auto 0 auto;
  border-radius: 5px;
  box-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37; /* Glow dorado */
}

.contacto-section p {
  font-size: 18px;
  color: #d4af37; /* Texto dorado */
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Calendly flotando con fondo oscuro y destellos dorados */
.calendly-inline-widget {
  background-color: #0d0d0d; /* Fondo negro */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 25px #d4af37; /* Destellos dorados suaves */
  max-width: 900px;
  margin: 0 auto;
}

footer {
  background-color: #0d0d0d; /* Fondo negro */
  padding: 30px 20px 20px 20px;
  text-align: center;
  color: #d4af37; /* Texto dorado */
  font-size: 14px;
  position: relative;
  margin-top: 50px;
}

/* Línea dorada encima */
footer::before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  box-shadow: 0 0 10px #d4af37;
}

/* Redes sociales */
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

footer .social-icons a {
  display: inline-block;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(59%) saturate(604%) hue-rotate(1deg) brightness(102%) contrast(95%);
  transition: transform 0.3s;
}

footer .social-icons img:hover {
  transform: scale(1.2);
}
