/* Hero Section */
.hero-nosotros {
    margin-top: 80px;
    padding: 2rem 1rem;
    background: none;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Navbar - Fondo negro y texto blanco */
.nav-transparent {
    background-color: #333; /* Fondo negro */
}

.hero-nosotros h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 40px; /* Agregar margen superior para separar el título de la cabecera */
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #009fe3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    clear: both;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #009fe3;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 10px);
    top: 0;
    z-index: 1;
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Equipo Grid */
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 20px; /* Aumenta el padding superior */
}

.section-header h2 {
    margin-bottom: 25px;
}

.miembro-equipo {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.miembro-equipo:hover {
    transform: translateY(-5px);
}

.icono-perfil {
    font-size: 100px;
    color: #333;
    background-color: #f0f0f0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Valores Grid */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.valor-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-item i {
    font-size: 48px;
    color: #009fe3;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 31px;
    }
    
    .hero-nosotros h1 {
        font-size: 3rem;
    }
}
.mision-vision {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.mv-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-5px);
}

.mv-item h3 {
    color: #009fe3;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .mision-vision {
        padding: 30px 0;
    }
}

ul.sin-puntos {
    list-style-type: none; /* Oculta las viñetas */
    padding-left: 0; /* Opcional: elimina la indentación */
}

/* =========================
   DOCUMENTO CON PREVIEW
========================= */
.documentos {
    padding: 80px 20px;
}

.doc-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

/* Vista previa tipo hoja */
.doc-preview {
    display: flex;
    justify-content: center;
}

.doc-preview img {
    width: 280px;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.doc-preview img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Info */
.doc-info h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.doc-info p {
    margin-bottom: 25px;
    color: #444c;
}

/* Botón */
.btn-descarga {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #009fe3, #00d4ff);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-descarga:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,159,227,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .doc-preview-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .doc-preview img {
        width: 220px;
    }
}

/* =========================
   BANNER CERTIFICACIÓN
========================= */
.cert-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    padding: 12px 20px;
    border-top: 6px solid rgba(0,159,227,0.6); 
    border-bottom: 6px solid rgba(0,159,227,0.6);

    gap: 20px;
}

/* TEXTO */
.cert-text {
    font-size: 1.3rem; /* antes 0.95 → ahora más grande */
    font-weight: 700;
    color: #444;
    line-height: 1.5;
}

/* Palabras destacadas */
.cert-text span {
    color: #009fe3; /* usa tu color corporativo */
    font-weight: 800;
}

/* Palabras verdes */
.cert-text span {
    color: rgba(0,159,227,0.6);
    font-weight: bold;
}

/* LOGO */
.cert-logo img {
    width: 180px;
    height: auto;
}

/* =========================
   RESPONSIVE (IMPORTANTE)
========================= */
@media (max-width: 768px) {

    .cert-banner {
        padding: 10px;
    }

    .cert-text {
        font-size: 0.75rem;
    }

    .cert-logo img {
        width: 80px;
    }
}
