/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
}
.breadcrumb a { color: #64748b; }
.breadcrumb a:hover { color: #00a650; }
.breadcrumb span { color: #0b1b3d; font-weight: 600; }

/* Hero */
.ns-hero { padding: 70px 0 50px; overflow: hidden; }
.ns-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ns-hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #0b1b3d;
}
.text-blue-u { color: #1d3557; }
.ns-hero-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 90%;
}
.ns-hero-img {
    position: relative;
}
.ns-hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgb(0 0 0 / .12);
    position: relative;
    z-index: 2;
}
.ns-dots-bg {
    position: absolute;
    top: -30px;
    right: -20px;
    z-index: 1;
    pointer-events: none;
}
.ns-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}
.ns-dot-red    { width: 70px; height: 70px; background: #e63946; top: 0; right: 20px; }
.ns-dot-green  { width: 55px; height: 55px; background: #00a650; top: 80px; right: -30px; }
.ns-dot-yellow { width: 60px; height: 60px; background: #f59e0b; top: 30px; right: 100px; }

/* Nuestra Esencia */
.ns-esencia { padding: 80px 0; }
.ns-esencia-title { font-size: 2rem; margin-bottom: 50px; }
.ns-esencia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ns-esencia-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .07);
    border: 1px solid #e2e8f0;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.ns-esencia-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgb(0 0 0 / .1);
}
.ns-esencia-icon { margin-bottom: 16px; }
.ns-esencia-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1b3d;
    margin-bottom: 10px;
}
.ns-esencia-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}
.ns-esencia-line {
    height: 3px;
    border-radius: 2px;
    width: 40px;
}

/* Nuestra Historia */
.ns-historia { padding: 80px 0; }
.ns-historia-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.ns-historia-left h2 { font-size: 2rem; margin-bottom: 20px; }
.ns-historia-left p  { font-size: 0.97rem; color: #64748b; line-height: 1.7; margin-bottom: 12px; }
.ns-historia-cta { font-size: 1.05rem !important; color: #0b1b3d !important; }

.ns-timeline { display: flex; flex-direction: column; gap: 0; }
.ns-tl-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}
.ns-tl-item:last-child { border-bottom: none; }
.ns-tl-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ns-tl-content { flex: 1; }
.ns-tl-year {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b1b3d;
    display: block;
    margin-bottom: 6px;
}
.ns-tl-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Nuestro Equipo */
.ns-equipo { padding: 80px 0; }
.ns-equipo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}
.ns-equipo-header h2 { font-size: 2rem; margin-bottom: 8px; }
.ns-equipo-header p  { font-size: 0.95rem; color: #64748b; line-height: 1.6; }
.ns-team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}
.ns-team-member { display: flex; flex-direction: column; align-items: center; }
.ns-team-photo {
    width: 110px; height: 110px;
    border-radius: 50%;
    border: 4px solid #00a650;
    overflow: hidden;
    margin-bottom: 14px;
    transition: transform .3s, box-shadow .3s;
}
.ns-team-photo:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15);
}
.ns-team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.ns-team-member h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b1b3d;
    margin-bottom: 4px;
}
.ns-team-member span {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.3;
}

/* Stats Banner */
.ns-stats { padding: 70px 0; }
.ns-stats-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}
.ns-stats-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ns-stat { text-align: center; }
.ns-stat-icon { margin-bottom: 10px; }
.ns-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.ns-stat-label {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1100px) {
    .ns-team-grid { grid-template-columns: repeat(3, 1fr); }
    .ns-stats-numbers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .ns-hero-grid,
    .ns-historia-grid,
    .ns-stats-grid { grid-template-columns: 1fr; }
    .ns-hero-content h1 { font-size: 2.2rem; }
    .ns-esencia-grid { grid-template-columns: 1fr 1fr; }
    .ns-equipo-header { flex-direction: column; }
}
@media (max-width: 600px) {
    .ns-esencia-grid { grid-template-columns: 1fr; }
    .ns-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ns-stats-numbers { grid-template-columns: 1fr 1fr; }
}
