/* Page banner */
.page-banner {
    background: linear-gradient(135deg, #23cc88 0%, #8ecf35 100%);
    padding: 80px 0 60px;
    text-align: center;
}
.page-banner h1 {
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 48px;
    margin-bottom: 15px;
}
.page-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}
.page-banner .breadcrumb-item a       { color: rgba(255,255,255,.85); }
.page-banner .breadcrumb-item.active  { color: #fff; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.7); }

/* Misión / Visión */
.mv-card {
    background: #f8fffe;
    border: 2px solid #23cc88;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
}
.mv-card h3 {
    color: #23cc88;
    font-family: 'Fredoka One', cursive;
    font-size: 26px;
    margin-bottom: 15px;
}

/* Valores */
.valor-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    height: 100%;
    transition: transform .3s ease;
}
.valor-card:hover { transform: translateY(-5px); }
.valor-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #23cc88, #8ecf35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.valor-icon i { font-size: 28px; color: #fff; }
.valor-card h4 {
    color: #00394f;
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Hitos timeline */
.nos-hitos { background: #f9f9f9; }

.hitos-timeline {
    position: relative;
    padding: 20px 0;
}
.hitos-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #23cc88, #8ecf35);
    transform: translateX(-50%);
}

.hito-item {
    position: relative;
    width: 45%;
    margin-bottom: 50px;
}
.hito-item.hito-izq { margin-right: auto; padding-right: 40px; }
.hito-item.hito-der { margin-left: auto;  padding-left: 40px;  }

.hito-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #23cc88;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #23cc88;
    top: 24px;
}
.hito-item.hito-izq .hito-dot { right: -8px; }
.hito-item.hito-der .hito-dot { left: -8px;  }

.hito-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.hito-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.hito-fecha {
    display: inline-block;
    background: linear-gradient(135deg, #23cc88, #8ecf35);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.hito-card h4 {
    color: #00394f;
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    margin-bottom: 8px;
}
.hito-card p { color: #555; font-size: 15px; line-height: 1.7; margin: 0; }

@media (max-width: 767px) {
    .hitos-timeline::before { left: 16px; }
    .hito-item,
    .hito-item.hito-izq,
    .hito-item.hito-der {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 48px;
        padding-right: 0;
    }
    .hito-item .hito-dot,
    .hito-item.hito-izq .hito-dot,
    .hito-item.hito-der .hito-dot { left: 8px; right: auto; }
}

/* Equipo */
.team-card { text-align: center; margin-bottom: 30px; }
.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #23cc88;
    margin: 0 auto 15px;
    display: block;
}
.team-card h4 {
    color: #00394f;
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    margin-bottom: 5px;
}
.team-card span { color: #23cc88; font-size: 14px; }
