.about-section {
    padding: 0rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-header h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.about-content {
    max-width: 80vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.3s;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.8s ease forwards 0.3s;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.mission, .vision {
    background: rgba(44, 62, 80, 0.05);
    padding: 1rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.1);
    opacity: 0;
}

.mission {
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards 0.7s;
}

.vision {
    transform: translateX(30px);
    animation: slideInRight 0.8s ease forwards 0.9s;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
    border-color: rgba(44, 62, 80, 0.3);
    background: rgba(44, 62, 80, 0.08);
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission:hover::before, .vision:hover::before {
    opacity: 1;
}

.mission h2, .vision h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.mission h2::after, .vision h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c3e50;
    transition: width 0.3s ease;
}

.mission:hover h2::after, .vision:hover h2::after {
    width: 100%;
}

.mission h2 i, .vision h2 i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
    color: #3498db;
}

.mission:hover h2 i, .vision:hover h2 i {
    transform: scale(1.2) rotate(10deg);
    color: #2980b9;
}

.mission p, .vision p {
    color: #34495e;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.mission:hover p, .vision:hover p {
    color: #2c3e50;
}

/* Efecto de brillo en el borde */
.mission::after, .vision::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, transparent, #3498db);
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission:hover::after, .vision:hover::after {
    opacity: 0.2;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .mission, .vision {
        padding: 1.5rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }
}

/* --- Sección de Valores Corporativos --- */

.corporate-values, .corporate-principle {
    margin-top: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    text-align: center;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.corporate-values h2, .corporate-principle h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.values-list, .principle-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
    justify-content: center;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

.value-card, .principle-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.10);
    padding: 1.2rem 1.5rem;
    min-width: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
    justify-content: start;
}

.value-card p, .principle-card p {
    text-align: justify !important;
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.35s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }
.value-card:nth-child(4) { animation-delay: 0.65s; }
.value-card:nth-child(5) { animation-delay: 0.8s; }

.value-card i, .principle-card i {
    font-size: 2rem;
    color: #3498db;
    transition: color 0.3s, transform 0.3s;
    margin-bottom: 0.5rem;
}

.value-card span, .principle-card span {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.value-card p, .principle-card p {
    margin: 0.3rem 0 0 0;
    font-size: 0.98rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    transition: color 0.3s;
}

.value-card:hover, .principle-card:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 8px 24px rgba(44,62,80,0.13);
}

.value-card:hover i, .principle-card:hover i {
    color: #ffd700;
    transform: scale(1.2) rotate(-8deg);
}

.value-card:hover p, .principle-card:hover p {
    color: #fff;
}

@media (max-width: 900px) {
    .values-list, .principle-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    .value-card, .principle-card {
        min-height: 140px;
        padding: 1rem 0.7rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .values-list, .principle-list {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .value-card, .principle-card {
        width: 100%;
        min-width: unset;
        font-size: 0.98rem;
    }
} 

/* --- Sección de Boletines --- */
.bulletin-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.bulletin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding: 0 0.5rem 2rem 0.5rem;
}

.bulletin-card {
    background: #fff;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 240px;
    margin: 0 auto;
}

.bulletin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.18);
}

.bulletin-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-top-left-radius: 0.7rem;
    border-top-right-radius: 0.7rem;
}

.bulletin-content {
    padding: 0.8rem 0.7rem 1rem 0.7rem;
}

.bulletin-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}

.bulletin-content p {
    color: #475569;
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
}

.bulletin-btn {
    display: inline-block;
    background: linear-gradient(90deg, #1E40AF 60%, #3B82F6 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 0.4rem;
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}

.bulletin-btn:hover {
    background: linear-gradient(90deg, #3B82F6 60%, #1E40AF 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.16);
}

@media (max-width: 1200px) {
    .bulletin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .bulletin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .bulletin-grid {
        grid-template-columns: 1fr;
    }
    .bulletin-card {
        max-width: 100%;
    }
} 

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1E40AF 60%, #3B82F6 100%);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
} 

/* --- Sección de Políticas de la Entidad --- */
.policy-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1.5rem 2rem;
    z-index: 1;
}

.policy-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.18);
}

.policy-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.policy-content p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.policy-btn {
    display: inline-block;
    background: linear-gradient(90deg, #1E40AF 60%, #3B82F6 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}

.policy-btn:hover {
    background: linear-gradient(90deg, #3B82F6 60%, #1E40AF 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.16);
} 

/* --- Sección de Vacantes --- */
.vacantes-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.vacantes-section .section-title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
}
.vacantes-section .section-underline {
    display: none;
}
.vacantes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 2rem 1rem;
    max-width: 70vw;
    margin: 0 auto;
} 

/* --- Sección de Testimonios de Colaboradores --- */
.testimonios-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.testimonios-section .section-title {
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
}
.testimonios-section .section-underline {
    display: none;
}
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonio-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 1rem;
}
.testimonio-video iframe {
    width: 100%;
    height: 220px;
    border-radius: 1rem 1rem 0 0;
    display: block;
}
.testimonio-info {
    padding: 1rem 1.2rem 0.5rem 1.2rem;
    text-align: left;
}
.testimonio-info h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
}
.testimonio-info p {
    color: #475569;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
} 
