:root {
    --bg-color: #212529;
    --bg-color-black: black;
    --txt-color-white: white;
    --bg-btn-1: rgb(133, 46, 241);
    --bg-btn-2: rgb(14, 161, 19);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    max-height: 100vh;
    overflow: hidden;
    background-color: var(--bg-color);
    font-size: x-large;
    color: var(--txt-color-white);
    font-family: "Roboto", sans-serif;
}
.button {
    padding: 5px;
    border-radius: 10px;
    padding-inline: 25px;
    border: 2px solid white;
    background-color: var(--bg-color);
    color: white;
}
.button:hover {
    background-color: var(--bg-btn-1);
    cursor: pointer;
}
header {
    height: 15%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header > a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > nav {
    display: flex;
    width: 100%;
    height: 100%;
}
header > nav > div {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}
.nav-r{
    display: flex;
    gap: 20px;
}
.nav-l{
    display: flex;
    justify-content: end;
    gap: 10px;
}

main {
    display: flex;
    height: 85%;
}

.con-3 {
    background-color: var(--bg-color-black);
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: scroll;
    gap: 20px;
    animation: fade-in 0.15s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.item {
    opacity: 0;
    position: relative;
    transform: translate(0,0);
    --delay: 1s;
    animation-delay: --delay;
    animation-name: cascade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 2);
    animation-direction: alternate;
}
  
@keyframes cascade {
    to {
        transform: translate(0, -15px);
        opacity: 1;
    }
}
  
@keyframes fade-in {
    to {
        opacity: 1;
    }
}

#content-con{
    width: 75vw;
    padding: 25px;
    background-color: var(--bg-color-black);
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: scroll;
    gap: 20px;
}
.con-l {
    width: 74vw;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
}
.con-m {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 48%;
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
}

.con-s {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: column;
    width: 30%;
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
    gap: 10px;
}

iframe {
    width: 100%;
    height: 100%;
}
#ul-menu {
    width: 25%;
    padding: 0;
    overflow-x: scroll;
}

.itemli {
    background-color: var(--bg-color);
    width: 100%;
    border: none;
    padding: 5%;
    color: var(--txt-color-white);
    text-align: left;
    padding-left: 15%;
}
#con-juegos {
    background-color: var(--bg-color);
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
}
.boton-C-Juegos {
    position: fixed;
    top: 40px;
    right: 40px;
}
.con-scroll {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 100px;
    padding-inline: 40px;
    height: 100%;
}

.carta {
    background-color: var(--bg-btn-1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    opacity: 85%;
    height: 370px;
    width: 320px;
    padding: 20px;
    border-radius: 1%;
    color: white;
    text-decoration: none;
    text-align: center;
    gap: 20px;
}
.carta > img {
    width: 200px;
}
.carta:hover {
    opacity: 100%;
    cursor: pointer;
    height: 390px;
    width: 340px;
}
#dashboard {
    width: 100vw;
    height: 100vh;
}

#dashboard h1 {
    margin: 0;
}
.directivos > .con-s > img {
    width: 200px;
    height: 200px;
}
.documentos > .con-s > img {
    width: 200px;
    height: 200px;
}
.documentos > .con-s > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Animaciones de botones y contenedores */

.glow-on-hover {
    padding-inline: 3rem;
    width: auto;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:hover:before {
    /* opacity: 1; */
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: -4px;
    left:-4px;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


p { 
    a {
      background: rgba(#fff, 0);
      border-bottom: 1px solid;
      color: #fff;
      line-height: 1.4;
      padding: .25em;
      text-decoration: none;
    }
  }
  
  .btn {
    background-color: var(--bg-color-black);
    color: #fff;
    cursor: pointer;
    display: block;
    font-weight: 300;
    line-height: 45px;
    position: relative;
    text-decoration: none;
    width: auto;
    padding-inline: 63px; 
    text-align: center;
    border-radius: 10px;
  }
  
  .btn-1 {
    font-weight: 300;
    
    svg {
      height: 45px;
      left: 0;
      position: absolute;
      top: 0; 
      width: 100%; 
    }
    
    rect {
      fill: none;
      stroke: var(--bg-btn-2);
      stroke-width: 5;
      stroke-dasharray: 422, 0;
      transition: all 0.35s linear;
    }
  }

.btn-5 {
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
} 

.btn-5:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388; 
}


/* ============================================
   ESTILOS ESPECÃFICOS PARA PLAN DE MEJORAMIENTO
   ============================================ */

.plan-mejoramiento {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    border-radius: 15px;
    color: #f5f5dc;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-mejoramiento h1 {
    text-align: center;
    color: #39a900;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #39a900;
    padding-bottom: 1rem;
}

.plan-intro {
    background: rgba(57, 169, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #39a900;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.plan-tipos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tipo-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        inset 5px 5px 10px #1a1a1a,
        inset -5px -5px 10px #363636;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(57, 169, 0, 0.2),
        inset 5px 5px 10px #1a1a1a,
        inset -5px -5px 10px #363636;
}

.tipo-card h2 {
    color: #39a900;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tipo-card h2:before {
    content: "ðŸ“š";
    font-size: 1.5rem;
}

.tipo-card.disciplinario h2:before {
    content: "âš–ï¸";
}

.tipo-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.tipo-card ol {
    padding-left: 1.5rem;
    line-height: 1.6;
}

.tipo-card ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.caracteristica-item {
    background: rgba(57, 169, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(57, 169, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.caracteristica-item:hover {
    background: rgba(57, 169, 0, 0.25);
    transform: translateX(10px);
}

.caracteristica-item:before {
    content: "âœ“";
    background: #39a900;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plan-image {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(57, 169, 0, 0.05);
    border-radius: 15px;
}

.plan-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.plan-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design para Plan de Mejoramiento */
@media (max-width: 768px) {
    .plan-tipos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-mejoramiento h1 {
        font-size: 2rem;
    }
    
    .tipo-card {
        padding: 1.5rem;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
    }
}



/* Estilos para la sección de Trámites */
.tramites-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tramite-card {
  background: linear-gradient(145deg, #2c3e50, #1a2530);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tramite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.tramite-icon {
  background-color: #3498db;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tramite-icon svg {
  color: white;
}

.tramite-card h3 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.tramite-content {
  flex-grow: 1;
}

.tramite-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tramite-details h4 {
  color: #ecf0f1;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tramite-details ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.tramite-details li {
  color: #bdc3c7;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.note {
  font-style: italic;
  color: #95a5a6;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.tramite-footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.section-title {
  color: beige;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #ecf0f1;
  line-height: 1.6;
}

/* Estilos para la sección de Deserciones */
.section-title {
  color: beige;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.subtitle {
  color: #f39c12;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 0.5rem;
}

.info-box {
  background: linear-gradient(145deg, #34495e, #2c3e50);
  border-left: 4px solid #f39c12;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.info-box.warning {
  border-left-color: #e74c3c;
}

.info-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.causales-container {
  margin-bottom: 2rem;
}

.causal-card {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(145deg, #2c3e50, #1a2530);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.causal-number {
  background-color: #3498db;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.causal-content h3 {
  color: #ecf0f1;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.causal-content p {
  color: #bdc3c7;
  line-height: 1.6;
}

.proceso-desercion {
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  background: rgba(52, 73, 94, 0.6);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step h4 {
  color: #3498db;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.step p {
  color: #ecf0f1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.consecuencias-box {
  background: linear-gradient(145deg, #34495e, #2c3e50);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #e74c3c;
}

.consecuencia-item {
  display: flex;
  align-items: flex-start;
}

.consecuencia-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.consecuencia-item p {
  color: #ecf0f1;
  line-height: 1.6;
}

.prevention-tips {
  background: rgba(46, 204, 113, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #2ecc71;
}

.tips-list {
  list-style-type: none;
  padding-left: 0;
}

.tips-list li {
  color: #ecf0f1;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.tips-list li:before {
  content: "?";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .causal-card {
    flex-direction: column;
  }
  
  .causal-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .info-box, .consecuencia-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon, .consecuencia-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}


/* Estilos para la sección de Etapa Productiva */
.ep-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: #bdc3c7;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.ep-intro {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #34495e, #2c3e50);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.ep-icon {
  font-size: 3rem;
  margin-right: 1.5rem;
}

.ep-intro p {
  color: #ecf0f1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.ep-alternativas {
  margin-bottom: 2.5rem;
}

.alternativas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.alternativa-card {
  background: rgba(52, 73, 94, 0.7);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alternativa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.alt-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.alternativa-card h3 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.alternativa-card p {
  color: #ecf0f1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.complemento-info {
  display: flex;
  align-items: flex-start;
  background: rgba(243, 156, 18, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.complemento-info .info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.complemento-info p {
  color: #f39c12;
  margin: 0;
  line-height: 1.6;
}

.ep-documentacion {
  margin-bottom: 2.5rem;
}

.ep-documentacion > p {
  color: #bdc3c7;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.documentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.documento-card {
  background: linear-gradient(145deg, #2c3e50, #1a2530);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.doc-number {
  background: #3498db;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.documento-card h3 {
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.documento-card p {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ep-registro {
  margin-bottom: 2.5rem;
}

.registro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.registro-text {
  color: #ecf0f1;
}

.registro-text ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.registro-text li {
  margin-bottom: 0.5rem;
  color: #bdc3c7;
}

.registro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ep-conferencias {
  margin-bottom: 2.5rem;
}

.conferencias-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.conferencia-info {
  display: flex;
  flex-direction: column;
}

.conf-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.conferencia-info p {
  color: #ecf0f1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.conferencia-beneficios {
  background: rgba(46, 204, 113, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.conferencia-beneficios h4 {
  color: #2ecc71;
  margin-bottom: 1rem;
}

.conferencia-beneficios ul {
  list-style-type: none;
  padding-left: 0;
}

.conferencia-beneficios li {
  color: #ecf0f1;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.conferencia-beneficios li:before {
  content: "?";
  color: #2ecc71;
  position: absolute;
  left: 0;
}

.ep-recomendaciones {
  margin-bottom: 2.5rem;
}

.recomendaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.recomendacion-item {
  background: rgba(52, 152, 219, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.recomendacion-item h4 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.recomendacion-item p {
  color: #ecf0f1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.ep-contacto {
  margin-top: 2rem;
}

.contacto-box {
  background: linear-gradient(145deg, #34495e, #2c3e50);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.contacto-box h3 {
  color: #f39c12;
  margin-bottom: 1rem;
}

.contacto-box p {
  color: #ecf0f1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-button {
  background: #2ecc71;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: #27ae60;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ep-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .ep-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .registro-content,
  .conferencias-content {
    grid-template-columns: 1fr;
  }
  
  .registro-image {
    order: -1;
  }
  
  .complemento-info {
    flex-direction: column;
    text-align: center;
  }
  
  .complemento-info .info-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Estilos para la sección de Historia */
.historia-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.historia-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.intro-content p {
  color: #ecf0f1;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.intro-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.historia-timeline {
  margin-bottom: 3rem;
}

.timeline-title {
  color: #f39c12;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  position: relative;
}

.timeline-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #f39c12;
  margin: 0.5rem auto;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #3498db;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-year {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
}

.timeline-content {
  background: rgba(52, 73, 94, 0.6);
  border-radius: 10px;
  padding: 1.5rem;
  margin-left: 4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: #3498db;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.timeline-content p, .timeline-content li {
  color: #ecf0f1;
  line-height: 1.6;
}

.timeline-content ul {
  padding-left: 1.5rem;
}

.timeline-content li {
  margin-bottom: 0.5rem;
}

.historia-fundador {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.fundador-content h2 {
  color: #f39c12;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.fundador-info {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.fundador-image {
  flex-shrink: 0;
}

.fundador-image img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fundador-details h3 {
  color: #3498db;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.fundador-details h3 span {
  color: #bdc3c7;
  font-size: 1rem;
  font-weight: normal;
}

.fundador-details h4 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.fundador-details p {
  color: #ecf0f1;
  line-height: 1.6;
}

.fundador-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.historia-legado {
  margin-bottom: 3rem;
}

.historia-legado h2 {
  color: #f39c12;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.legado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.legado-card {
  background: linear-gradient(145deg, #2c3e50, #1a2530);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.legado-card:hover {
  transform: translateY(-5px);
}

.legado-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legado-card h3 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legado-card p {
  color: #ecf0f1;
  line-height: 1.5;
  font-size: 0.95rem;
}

.historia-sena-actual {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(52, 73, 94, 0.6);
  border-radius: 10px;
  padding: 2rem;
}

.historia-sena-actual h2 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.historia-sena-actual p {
  color: #ecf0f1;
  line-height: 1.7;
  font-size: 1.05rem;
}

.sena-actual-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sena-actual-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .historia-intro,
  .historia-fundador,
  .historia-sena-actual {
    grid-template-columns: 1fr;
  }
  
  .fundador-info {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline:before {
    left: 1rem;
  }
  
  .timeline-year {
    left: -2.5rem;
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }
  
  .timeline-content {
    margin-left: 3rem;
  }
}

@media (max-width: 576px) {
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline:before {
    left: 0.75rem;
  }
  
  .timeline-year {
    left: -2rem;
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
  
  .timeline-content {
    margin-left: 2.5rem;
    padding: 1rem;
  }
  
  .legado-grid {
    grid-template-columns: 1fr;
  }
}

/* Estilos para la sección de Misión */
.mision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.mision-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mision-title {
  color: #f8f9fa;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mision-icon {
  background: linear-gradient(135deg, #2c3e50, #4a6580);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mision-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.mision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mision-text {
  color: #e9ecef;
}

.mision-statement {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #17a2b8;
  border-radius: 0 8px 8px 0;
}

.mision-highlights {
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.highlight-content h3 {
  color: #17a2b8;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.highlight-content p {
  color: #ced4da;
  margin: 0;
  line-height: 1.5;
}

.mision-quote {
  padding: 1.5rem;
  background: rgba(23, 162, 184, 0.1);
  border-left: 4px solid #17a2b8;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  font-style: italic;
}

.mision-quote footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: #17a2b8;
  text-align: right;
}

.mision-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mision-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mision-image:hover img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .mision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mision-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .mision-container {
    padding: 1rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}


<style>
  /* Estilos para la sección de Visión */
  .vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #fff;
  }
  
  .vision-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vision-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f8f9fa;
  }
  
  .vision-icon {
    background-color: #0d6efd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .vision-icon svg {
    width: 40px;
    height: 40px;
    color: white;
  }
  
  .vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  @media (max-width: 992px) {
    .vision-content {
      grid-template-columns: 1fr;
    }
  }
  
  .vision-statement {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 4px solid #0d6efd;
    border-radius: 4px;
  }
  
  .vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .pillar:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .pillar-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  
  .pillar-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f8f9fa;
  }
  
  .pillar-content p {
    color: #e9ecef;
    line-height: 1.5;
    margin: 0;
  }
  
  .vision-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vision-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
  }
  
  .image-caption {
    text-align: center;
    font-style: italic;
    color: #dee2e6;
  }
  
  .vision-highlight {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
  }
  
  .highlight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .highlight-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #e9ecef;
  }
</style>