.texto-destacado-azulclaro{
  color: #CBDEE7;
  font-weight: 700;
}
.texto-destacado-azulmarino{
  color: #002544;
  font-weight: 700;
}

/* Contenedor */
#vacante-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

/* Sidebar */
#vacante-sidebar {
  flex: 0 0 300px;
  padding: 20px;
  border-right: 1px solid #e0e6ed;
}

#vacante-sidebar h3 {
  font-family: "Neue Plak", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e1e1e;
}

#vacante-sidebar select {
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 14px;
  font-size: 20px;
  font-weight: 300;
  border: 1px solid #cbd5e0;
  border-radius: 20px;
  background-color: #fff;
  appearance: none;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #cfdce5;
  border-radius: 999px; 
  padding: 10px 16px;
  padding-right: 40px;
  font-size: 16px;
  color: #0c2d48;
  width: 100%;
  cursor: pointer;
  transition: border 0.3s ease;
}

.custom-select:focus {
  outline: none;
  border-color: #0c2d48;
}

.choices__inner {
    border-radius: 30px;
    border: 1px solid #c3ced9;
    padding: 10px 20px;
    min-height: 50px;
    font-size: 16px;
    color: #0c2946;
    background-color: #f9f9f9;
}

/* Elimina la flecha predeterminada de Choices */
.choices[data-type*=select-one]::after {
    display: none;
}


.choices__list--dropdown {
    border-radius: 12px;
}

/* Agrega tu propio ícono SVG al lado derecho del select */
.choices[data-type*="select-one"] .choices__inner {
    position: relative;
    padding-right: 40px; /* espacio para el ícono */
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230C2946' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 8px;
}

.choices__list--dropdown .choices__item,
.choices__list--single .choices__item{
  color:  #EF5C3F !important; 
  font-family: "Neue Plak", Sans-serif;
  font-weight: 300;
  font-size: 18px;
}



/* Resultados */
#vacante-results {
  flex: 1;
}



/***/
.vacante-card {
  border: 1px solid #e5eaf1;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  border-radius: 0;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.vacante-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vacante-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vacante-titulo {
  font-family: "Neue Plak", Sans-serif;
  font-size:27px;
  color: #000000;
  font-weight: 700;
  margin: 0;
}

.vacante-meta .business-unit{
  text-transform: uppercase;
}
.vacante-btn {
  font-family: "Neue Plak", Sans-serif;
  display: inline-flex;
  background-color: #EF5C3F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.vacante-btn:hover {
  background-color: #FFFF;
  color: #002B5B;
  border: 1px solid #002B5B;
}
.vacante-btn svg {
  transition: transform 0.3s ease;
}

.vacante-btn:hover svg {
  transform: scale(1.2);
}


.vacante-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.vacante-meta .icon-text {
  font-family: "Neue Plak", Sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;        
  margin: 0;     
  font-size: 16px;
  font-weight: 400;  
  color: #A7BCC6;  
}


.vacante-meta .icon-text .icon-img {
  width: 18px;
  height: auto;
  display: inline-block;
}


.vacante-descripcion, .vacante-more-content p{
  font-family: "Neue Plak", Sans-serif;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 400;
  color: #002B5B;
}

.vacante-more-content {
  font-family: "Neue Plak", Sans-serif;
  margin-top: 1rem;
  display: none;
  color: #002B5B;
  font-size: 18px;
  font-weight: 400;
}

.vacante-readmore {
  font-family: "Neue Plak", Sans-serif;
  background: none;
  border: none;
  color: #A7BCC6;
  cursor: pointer;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.vacante-readmore .arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.arrow-up {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


/**/
/* Responsive */
@media (max-width: 768px) {
  #vacante-wrapper {
    flex-direction: column;
  }

  #vacante-sidebar {
    border-right: none;
    border-bottom: 1px solid #e0e6ed;
    width: 100%;
  }

  #vacante-results {
    width: 100%;
  }

  .vacante-card {
    padding: 20px;
  }

  .vacante-apply-btn {
    position: static;
    margin-top: 10px;
    display: inline-block;
  }
}
