.content-area-convocatoria {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
  width: 100%;
}

@media (min-width: 768px) {
  .content-area-convocatoria {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.card {
  position: relative;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  max-width: 1024px;
  margin: auto;
  padding: 1.25rem;
  
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.card-etiqueta {
  position: absolute;
  top: 0;
  left: 0;
  /* background-color: rgb(34 197 94 / 1); */
  
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.1rem 1rem;
  border-bottom-right-radius: 1rem;
  text-transform: uppercase;
}



.card-etiqueta.vigente {
  color: white;
  background-color: rgb(34 197 94 / 1);
}
.card-etiqueta.concluido {
  color: white;
  background-color: rgb(239 68 68 / 1);
}

.card-header {
  flex-direction: row;
  align-items: center;
}
.card-header {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  /* margin-top: 2rem; */
  margin-bottom: 0.5rem;
}

.card-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

.card-header span {
  color: #2563eb;
}



.card-entity {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-entity img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 1rem;
}

.card-entity p {
  margin: 0;
  line-height: 1.4;
}

.card-entity .title {
  font-weight: 600;
  /* font-size: 1.125rem; */
  font-size: 0.875rem;
  color: #1f2937;
}

.card-entity .location {
  font-size: 0.875rem;
  color: #6b7280;
}

.card-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  /* .card-header {
    flex-direction: row;
    align-items: center;
  } */

  .card-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
}

.info-item svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

.info-item .label {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.info-item .value {
  font-weight: 500;
}

/* .card-careers {
  margin-bottom: 0.5rem;
} */

.card-careers p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.career-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin: 0.2em;
}

.career-badge.short {
  max-width: 330px;
  white-space: nowrap;
  overflow: clip;
  text-overflow: ellipsis;
}

/* Tooltip al hacer hover */
.career-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: 120%;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  white-space: normal;
  max-width: 400px;
  z-index: 10;
  display: none;
  font-size: 13px;
}

.career-badge:hover::after {
  display: block;
}


 

.careers-detail {
  padding-top: 1rem;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 640px) {
  .card-footer {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.75rem;
  }
}

.card-footer a {
  padding: 0.5rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.card-footer a:hover {
  background-color: #1e40af;
  text-decoration: none;
}


 
/* .btn-bases {
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
    background: #ff4040;
    color: rgb(255, 255, 255);
    padding: 0.2em 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #ff4040;
    font-weight: 400;
    border-radius: 24px;
}

.btn-bases:hover {
    background: #fff;
    color: red;
    text-decoration: none;
    border: 2px solid red;
} */




.post-index span {
  color: rgb(0, 0, 0);
  /* text-align: center; */
  font-weight: bold;
}
.post-index a {
  margin-top: 0.5rem ;
  display: block !important;
  text-decoration: none !important;
  /* text-align: center; */
  padding: 0.5rem;
  /* padding: 0.75rem 1rem; */
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fade-in-down 0.8s ease-out forwards;
  background: #ff4040;
}

.post-index a:hover {
  background-color: rgb(185 0 0 / 86%);
  color: white;
  transform: translateY(-0.25rem) scale(1.05);
}

.the-content ul li {
  margin: 0 0 6px 35px !important;
  line-height: 1.2 !important;
}


 


.vigencia {
  padding: 16px;
  font-size: 15px;
  margin: 0 0 16px 0;
  text-align: left;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}
 
 

.alert-faq,
.alert-success,
.alert-error {
  display: block;
  /* display: flex; */
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  margin: 16px 0;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  line-height: 1.5;
}



.alert-success {
  background-color: #e6f4ea;
  color: #1e4620;
  border-left: 6px solid #4CAF50;
}

.alert-error {
  background-color: #fdecea;
  color: #611a15;
  border-left: 6px solid #f44336;
}

/* .alert-error strong{
  color: red;
} */

.alert-faq {
  background-color: #fffbe6;
  color: #8a6d3b;
  border-left: 6px solid #ffdd57;
}
/* .alert-faq strong {
  background: black;
  color: white;
} */

.alert-recomendaciones {
  /* background-color: #fff8e1;  
  color: #5d4037;  
  border-left: 6px solid #ffc107;  */

  background-color: #f1f5f9;
  color: #1e293b;
  border-left: 6px solid #3b82f6; 
  padding: 0.5rem 0;
}

 

.alert-box a {
  color: #0077cc;
  text-decoration: underline;
  font-weight: 500;
}

.alert-box a:hover {
  text-decoration: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: #ffb400;
  flex-shrink: 0;
}

.alert-box svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-bottom: -5px;
}



/* .btn-glass-download {
  display: inline-block;
  padding: 0.75em 1.8em;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 10px 15px rgba(0,0,0,0.2);
}

.btn-glass-download span {
  position: relative;
  z-index: 2;
}

.btn-glass-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 75%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-glass-download:hover::before {
  left: 100%;
}

.btn-glass-download:hover {
  color: #000;
  background: rgba(255, 64, 64, 0.1);
  border-color: #ff5252;
  box-shadow: 0 0 10px #ff5252, 0 0 40px rgba(255, 64, 64, 0.5);
  text-decoration: none;
}


.btn-glass-advanced {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8em 1.6em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 64, 64, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-glass-advanced .icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
  transition: transform 0.3s ease;
}

.btn-glass-advanced:hover {
  background: rgba(255, 64, 64, 0.1);
  box-shadow: 0 0 10px #ff5252, 0 0 30px rgba(255, 64, 64, 0.4);
  color: #ffe;
  border-color: #ff5252;
}

.btn-glass-advanced:hover .icon {
  transform: translateY(3px);
  stroke: #ff9f9f;
}

@media (max-width: 480px) {
  .btn-glass-advanced {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.7em 1em;
  }
}
 */





.btn-download-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  /* margin-top: 1rem; */
  padding: 0.8em 1.6em;
  background: #fff;
  border: 2px solid #ff5252;
  color: #ff5252;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(255, 82, 82, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-download-light .icon {
  width: 22px;
  height: 22px;
  stroke: #ff5252;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.btn-download-light:hover {
  background: #ff5252;
  color: #fff;
  box-shadow: 0 8px 16px rgba(255, 82, 82, 0.35);
}

.btn-download-light:hover .icon {
  transform: translateY(3px);
  stroke: #fff;
}

@media (max-width: 480px) {
  .btn-download-light {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.7em 1em;
  }
}


/******************************************/
.the-content-convocatoria {
    /* font-family: 'Arial', sans-serif; */
    /* line-height: 1.6; */
    padding-bottom: 1rem;
}

.the-content-convocatoria h2 {
    font-size: 1.4em;
    margin-top: 1.5em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.3em;
}

/* .the-content-convocatoria ul {
    padding-left: 1.2em;
    margin-top: 0.5em;
} */

.enlaces-fuente {
    list-style-type: none;
    padding: 0;
}

.enlaces-fuente li {
    margin-bottom: 0.5em;
}

.enlace-fuente {
    text-decoration: none;
    color: #1a73e8;
    font-weight: 500;
}

.enlace-fuente:hover {
    text-decoration: underline;
}

/* .btn-download-light {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.6em 1em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-download-light:hover {
    background: #e2e2e2;
}

.btn-download-light .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
} */



/* .oferta__title {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    color: #1a202c;
    border-left: 4px solid #0077cc;
    padding-left: 0.5em;
}

.resultados-enlaces {
    padding-left: 1.2em;
    margin-top: 0.8em;
}

.resultados-enlaces li {
    margin-bottom: 0.6em;
    font-size: 1rem;
}

.resultados-enlaces a {
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
}

.resultados-enlaces a:hover {
    text-decoration: underline;
} */


/* HOME */
.asap-hero-content h1, .asap-hero-content p {
    color: #1c3979 !important;
}

.asap-hero:after {
    /* background: #e3ebf3 !important; */
    background: linear-gradient(to bottom right, #eff6ff, #eef2ff, #f3e8ff) !important;
}