.nosotros-wrapper {
    max-width: 1200px;
    margin: 129px auto;
    padding: 40px 20px 60px;
}

.nosotros-title {
    font-size: 46px;
    font-weight: 700;
    color: #00aeef;
    margin: 0 0 10px;
    text-align: left;
}

.nosotros-divider {
    width: 80px;
    height: 3px;
    background-color: #00aeef;
    margin: 0 0 30px;
}

.nosotros-hero {
    text-align: center;
    margin-bottom: 40px;
}

.nosotros-hero img {
    max-width: 100%;
    height: auto;
}

/* Valores */
.valores-title {
    font-size: 28px;
    font-weight: 600;
    color: #5e5e5e;
    margin-bottom: 20px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.valor-card {
    padding: 20px;
    border-radius: 6px;
    color: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.valor-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.valor-text {
    font-size: 14px;
}

.bg-honestidad   { background-color: #00aeef; }
.bg-responsab    { background-color: #ec008c; }
.bg-dedicacion   { background-color: #fff200; color: #333; }
.bg-servicio     { background-color: #000000; }

/* Timeline / Historia (placeholder donde antes iba cool-timeline y slider) */
.timeline-section {
    margin-bottom: 50px;
    text-align: center;
}

.timeline-section h2 {
    font-size: 26px;
    color: #00aeef;
    margin-bottom: 10px;
}

.timeline-section p {
    font-size: 15px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Únete a nosotros */
.join-section {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}

.join-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.join-title {
    font-size: 32px;
    font-weight: 700;
    color: #00aeef;
    text-align: center;
    margin-bottom: 5px;
}

.join-subtitle {
    font-size: 18px;
    color: #31c4fb;
    text-align: center;
    margin-bottom: 5px;
}

.join-call {
    font-size: 28px;
    font-weight: 700;
    color: #00aeef;
    text-align: center;
    margin-bottom: 10px;
}

.join-text {
    font-size: 15px;
    text-align: center;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}

.warning-note {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #ec008c;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .nosotros-title {
        font-size: 32px;
        text-align: center;
    }
    .nosotros-divider {
        margin: 0 auto 117px;
    }
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .join-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nosotros-title {
        font-size: 32px;
        text-align: center;
    }
    .nosotros-divider {
        margin: 0 auto 55px;
    }
    .valores-grid {
        grid-template-columns: 1fr;
    }
}