ul {
    list-style-type: none;
}

/* ========== HERO NOSOTROS ========== */

.hero-nosotros {
    background: url("img/base.png") center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 4rem 2rem;
}

.hero-nosotros::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-inner-bas {
    max-width: 90%;
    padding-bottom: 1rem;
}

.hero-inner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-inner span {
    color: var(--cyan-500);
}

.hero-inner p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f3f4f6;
}

@media (max-width: 768px) {
    .hero-inner p {
        font-size: 1rem;
    }
}

/* ========== SOBRE LA EMPRESA ========== */

.sobre-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007ecc;
    margin-bottom: 0.5rem;
}

.sobre-title {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue-900);
    margin: 0;
    text-align: center;
    padding-bottom: 1rem;
}

.sobre-empresa {
    padding: 9rem 2rem;
    background: #ffffff;
    color: var(--gray-600);
    text-align: center;
}

.sobre-empresa h2 {
    color: var(--blue-900);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.sobre-empresa h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--blue-950);
    font-weight: 600;
}

.sobre-block {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.sobre-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.sobre-img {
    flex: 1;
    max-width: 45%;
}

.sobre-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    flex: 1.5;
    max-width: 55%;
    text-align: start;
}

.sobre-content h2 {
    font-size: 2.2rem;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sobre-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--blue-950);
    font-weight: 600;
}

.sobre-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
}

@media (max-width: 992px) {
    .sobre-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .sobre-img,
    .sobre-content {
        max-width: 100%;
    }
    .sobre-content {
        margin-top: 2rem;
        gap: 1rem;
        text-align: center;
    }
        .sobre-block {
    flex-direction: column;
    gap: 2rem;
    }
}

/* ========== MISIÓN, VISIÓN Y VALORES ========== */

.mvv {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.mvv h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--blue-900);
    margin-bottom: 3rem;
    font-weight: 600;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
}

.mvv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cyan-600);
    font-weight: 600;
}

.mvv-card p,
.mvv-card ul {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.mvv-card ul {
    padding-left: 1.2rem;
    list-style: disc;
}

@media (max-width: 768px) {
    .sobre-empresa h2,
    .mvv h2 {
        font-size: 1.8rem;
    }
    .mvv-card {
        padding: 1.5rem;
    }
}

.value-prop {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f7f7f7 50%, #fff);
}

.equipo-section {
    padding: 6rem 2rem 9rem 2rem;
    background: #ffffff;
}

.equipo-title {
    margin-bottom: 2rem;
}

.equipo-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-section {
    padding: 9rem 2rem;
    background: #fff;
}

.timeline-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 3rem;
}

.timeline-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border-top: 2px dashed var(--cyan-500);
    z-index: 1;
}

.timeline-item {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.timeline-year {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-900);
    margin-bottom: 1rem;
}

.timeline-circle {
    width: 18px;
    height: 18px;
    background: var(--cyan-600);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
}

.timeline-text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 900px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: center;
    }
    .timeline-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        border-left: 2px dashed var(--cyan-500);
        border-top: none;
    }
    .timeline-item {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 500px;
    }
    .timeline-year {
        margin-bottom: 0.5rem;
    }
    .timeline-circle {
        margin-bottom: 1rem;
    }
}
