/* Estilo del body */
body {
  background: linear-gradient(180deg, rgba(255, 99, 132, 0.7), rgba(255, 255, 255, 1), rgba(54, 162, 235, 0.7));
  color: #333;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Mantener el contenido principal expandido */
main {
  flex-grow: 1;
}

/* Estilo de login y loading de formularios */
#divLoading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(254, 254, 255, .65);
  z-index: 9999;
  display: none;
}

#divLoading img {
  width: 50px;
  height: 50px;
}

/* Estilo de la navbar */
.navbar {
  background: #706f6f;
  border-bottom: 1px solid #555;
}

/* Centrar el menú de navegación (ul) */
.navbar-nav {
  justify-content: center;
  flex-grow: 1;
}

/* Espaciado entre elementos del menú */
.navbar-nav .nav-item {
  margin-left: 15px;
  margin-right: 15px;
}

/* Estilo de los enlaces del menú */
.nav-link {
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.nav-link i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Estilo de los botones a la derecha */
.ms-auto .btn {
  margin-left: 15px;
}

/* Estilo de hover en los enlaces del menú */
.nav-link:hover {
  color: #ffd700;
}

/* Marcar la página actual con color diferente */
.nav-link.active {
  color: #ffd700; /* Color para el enlace activo */
  font-weight: bold; /* Para destacar más el enlace activo */
}

.btn-light {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.btn-outline-light {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-light:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.btn-primary i {
  margin-right: 10px;
  /* Espacio entre el icono y el texto */
}


/* Estilo del carrusel */
.carousel-item img {
  height: 400px;
  object-fit: cover;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h5 {
  font-size: 1.8rem;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #d1d1d1;
}




/* Estilo de las tarjetas de Testimonios */
.testimonial-card {
  background: linear-gradient(to bottom right, #e5eff0, #cedbdf);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

/* Sombra uniforme para ambas tarjetas */
.job-card:hover,
.testimonial-card:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo global de tarjetas */
.custom-card {
  background: linear-gradient(to right, #1a1a2e, #16213e);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 80px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.custom-card h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

.custom-card p {
  text-align: center;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-card .register-btn {
  background-color: #007bff;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.custom-card .register-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}


/* Estilo del footer */
footer {
  background-color: #706f6f;
  color: #f1f1f1;
  padding-top: 40px;
  padding-bottom: 20px;
  width: 100%;
  position: relative;
  bottom: 0;
}

/* Alinear el contenido del footer */
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilo para el texto a la izquierda */
.footer-left {
  font-size: 14px;
}

/* Estilo para los íconos de redes sociales al centro */
.footer-center {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-center a {
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #ffd700;
}

/* Estilo para el logo a la derecha */
.footer-right img {
  width: 100px;
  height: auto;
}

/* Botones de redes sociales flotantes */
.social-buttons {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-buttons a {
  background-color: #007bff;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-buttons a:hover {
  background-color: #0056b3;
}

#footer-icons a {
  text-decoration: none;
}

#footer-icons a:hover {
  text-decoration: underline; /* Si quieres que tenga subrayado al pasar el mouse */
}


/* Botón Ir Arriba */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #007bff;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}



/*
NOSOTROS
*/
.about-section {
  background: linear-gradient(to right, #f7f8fc, #ffffff);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
}

.card.job-card h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.card.job-card p {
  color: #333;
  line-height: 1.6;
}
/*
 -- NOSOTROS
*/


/*
FAQs
*/
/* Color atractivo para el título principal */
.faq-title {
  color: #007bff; 
  font-weight: bold;
  font-size: 2.5rem;
}

/* Fondo agradable para cada sección de FAQ */
.faq-item {
  background-color: #f9f9f9; /* Un color suave para el fondo */
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Sombra ligera */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mejoramos el efecto hover */
.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2); /* Sombra más intensa al hacer hover */
}

/* Estilo del acordeón */
.accordion-button {
  background-color: #f9f9f9;
  color: #333;
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: white;
}

.accordion-body {
  background-color: #e5eff0;
  color: #333;
}

.accordion-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.faq-item h3 i {
  margin-right: 10px;
  color: #007bff;
}
/*
--FAQs
*/



/*
 Empleos
*/
.oferta-title{
  color: #007bff; 
  font-weight: bold;
  font-size: 2.5rem;
}

.job-info {
  font-size: 1rem;
  color: #555;
}

.job-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.job-info i {
  margin-right: 10px;
  font-size: 1.1rem;
  color: #007bff;
}

.job-info p {
  margin: 0;
  color: #333;
  font-weight: 500;
}

.job-card {
  background: linear-gradient(to bottom right, #e5eff0, #cedbdf);
  border-radius: 8px;
  border: none;
  padding: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.job-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.job-info i {
  margin-right: 10px;
  font-size: 1.1rem;
  color: #007bff;
}

.job-info p {
  margin: 0;
  color: #333;
  font-weight: 500;
}
/*
--Empleos
*/



/*
  Testimonios
*/
.testiminio-title{
  color: #007bff; 
  font-weight: bold;
  font-size: 2.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: bold;
  color: #007bff;
}

.testimonial-comment {
  font-style: italic;
  color: #333;
}

.testimonial-stars {
  color: #ffd700;
}
/*
--Testimonios
*/




/*
  Contacto
*/
.contacto-title{
  color: #007bff; 
  font-weight: bold;
  font-size: 2.5rem;
}

#contacto .form-label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #007bff;
  display: flex;
  align-items: center;
}

#contacto .form-label i {
  margin-right: 8px;
  font-size: 1.2rem;
  color: #007bff;
}

#contacto .form-control {
  border-radius: 5px;
  border: 2px solid #ced4da;
  background-color: #f8f9fa;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

#contacto .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#contacto .btn {
  background-color: #007bff;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#contacto .btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

#contacto .btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#contacto h2, #contacto h4, #contacto h5 {
  font-weight: bold;
}

#contacto .p-4 {
  background-color: #fff;
}

.contact-social-buttons a {
  margin-right: 15px;
  color: #007bff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.contact-social-buttons a:hover {
  color: #0056b3;
}

#contacto .list-unstyled li {
  font-size: 1.1rem;
  color: #555;
}

#contacto .list-unstyled i {
  margin-right: 10px;
}

#contacto .bg-light {
  background-color: #f9f9f9 !important;
}

#contacto p {
  font-size: 1rem;
  color: #666;
}

#contacto a {
  text-decoration: none;
}

#contacto a:hover {
  text-decoration: underline; /* Si quieres que tenga subrayado al pasar el mouse */
}

/*
--Contacto
*/

