
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}
html, body {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: #020d1f;
    position: relative;
    padding: 64px 6% 70px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,152,153,0.25), transparent 70%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -140px; left: 10%;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(90,255,248,0.08);
}
.breadcrumb {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-family: 'Overpass', sans-serif;
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: #5afff8; }
.breadcrumb span { color: #5afff8; }
.page-hero h1 {
    position: relative;
    z-index: 2;
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 48px);
    color: white;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero h1 span { color: #5afff8; }
.page-hero p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    max-width: 640px;
}

/* ===== SHARED SECTION STYLES ===== */
.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #020d1f;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-underline {
    width: 50px;
    height: 3px;
    background: #009899;
    margin-bottom: 32px;
}
.eyebrow {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #009899;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* ===== MISIÓN / VISIÓN ===== */
.mv-section {
    background: white;
    padding: 80px 6%;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.mv-card {
    background: #f5f7fa;
    border-radius: 14px;
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeef2;
}
.mv-card.mision { border-top: 4px solid #009899; }
.mv-card.vision { border-top: 4px solid #5afff8; }
.mv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.mv-card.mision .mv-icon { background: #009899; }
.mv-card.vision .mv-icon { background: #020d1f; }
.mv-icon svg { width: 26px; height: 26px; stroke: white; }
.mv-card h2 {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #020d1f;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.mv-card p {
    color: #4a4a4a;
    font-size: 14.5px;
    line-height: 1.85;
}
.mv-card .mv-bignum {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Overpass', sans-serif;
    font-weight: 900;
    font-size: 130px;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

/* ===== VALORES ===== */
.valores-section {
    background: #020d1f;
    padding: 80px 6%;
    position: relative;
    overflow: hidden;
}
.valores-section .section-title { color: white; }
.valores-section .eyebrow { color: #5afff8; }
.valores-section::before {
    content: '';
    position: absolute;
    top: 20%; left: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
}
.valores-intro {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    max-width: 600px;
    margin-bottom: 44px;
    line-height: 1.8;
}
.valores-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.valor-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 30px 24px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.valor-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(90,255,248,0.3);
}
.valor-num {
    font-family: 'Overpass', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #5afff8;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: block;
}
.valor-icon {
    width: 46px; height: 46px;
    border: 1.6px solid #009899;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.valor-icon svg { width: 22px; height: 22px; stroke: #5afff8; }
.valor-card h3 {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.valor-card p {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    line-height: 1.75;
}

/* ===== EQUIPO ===== */
.equipo-section {
    background: white;
    padding: 80px 6%;
}
 
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 10px;
}
 
.equipo-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eaeef2;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
 
.equipo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
 
.equipo-card-img {
    width: 100%;
    aspect-ratio: 6 / 7;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #e8edf2;
}
 
.equipo-card:nth-child(1) .equipo-card-img { background: linear-gradient(160deg, #c8d8e8, #a0b8cc); }
.equipo-card:nth-child(2) .equipo-card-img { background: linear-gradient(160deg, #bdd0c4, #8aadA0); }
.equipo-card:nth-child(3) .equipo-card-img { background: linear-gradient(160deg, #c5c8d8, #9aa0c0); }
 
.equipo-card-body {
    padding: 28px 26px 32px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}
 
.equipo-card-role {
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #009899;
    margin-bottom: 6px;
}
 
.equipo-card-name {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #020d1f;
    margin-bottom: 16px;
    line-height: 1.2;
}
 
.equipo-card-divider {
    width: 36px;
    height: 3px;
    background: #009899;
    margin-bottom: 16px;
    border-radius: 2px;
}
 
.equipo-card-bio {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}
 
.equipo-card-bio p + p {
    margin-top: 10px;
}


/* ===== RESPONSIVE ===== */
@media only screen and (min-width: 769px) {
    #burger-menu { display: none; }
}
@media only screen and (max-width: 900px) {
    .mv-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: 1fr 1fr; }
    .valor-card:nth-child(7) { grid-column: auto; }
    .footer { grid-template-columns: 1fr 1fr; gap: 36px; }
    .equipo-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media only screen and (max-width: 768px) {
    #burger-menu { display: block; }
    header { justify-content: space-between; }
    .navbar, header #access { display: none; }
    .page-hero { padding: 44px 5% 50px; }
    .mv-card { padding: 32px 26px; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
    .footer { grid-template-columns: 1fr; padding: 40px 5%; gap: 30px; }
    .equipo-section { padding: 48px 5%; }
}
@media only screen and (max-width: 540px) {
    .valores-grid { grid-template-columns: 1fr; }
    .equipo-grid { max-width: 100%; }
}