
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
:root {
    --red: #C41E1E;
    --red-dark: #9e1818;
    --ink: #0a0a0a;
    --muted: #6b6b6b;
    --border: #e5e5e5;
    --bg-off: #f7f7f6;
    --bg-dark: #0f0f0f;
    --max: 1240px;
    --pad: clamp(20px,5vw,80px);
}
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-thumb {
    background: var(--red);
}
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad);
    background: rgba(10,10,10,0);
    transition: background .4s, border-color .4s;
    border-bottom: 1px solid transparent;
}
#nav.solid {
    background: rgba(10,10,10,.96);
    border-color: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo img {
    height: 40px;
    display: block;
}
.nav-logo .fb {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    display: none;
}
.nav-logo .fb em {
    font-style: normal;
    color: var(--red);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-right a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    padding: 8px 16px;
    transition: color .2s;
}
.nav-right a:hover, .nav-right a.active {
    color: #fff;
}
.nav-btn {
    background: var(--red) !important;
    color: #fff !important;
    border-radius: 2px;
    margin-left: 8px;
}
.nav-btn:hover {
    background: var(--red-dark) !important;
}
.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hbg span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: .3s;
}
/* PAGE HERO */
.ph {
    position: relative;
    height: 56vh;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg-quienes-somos.jpg') center 40% / cover;
    transform: scale(1.05);
    animation: ken 10s ease forwards;
}
@keyframes ken {
    to {
        transform: scale(1);
    }
}
.ph-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.9) 0%, rgba(10,10,10,.45) 50%, rgba(10,10,10,.12) 100%);
}
.ph-rb {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    z-index: 2;
}
.ph-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad) 72px;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--red);
}
.ph h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px,5vw,72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px;
}
.ph h1 em {
    font-style: normal;
    color: var(--red);
}
.ph-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,.48);
    max-width: 500px;
    line-height: 1.7;
}
/* TICKER */
.ticker {
    background: var(--red);
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-flex;
    animation: tick 28s linear infinite;
}
@keyframes tick {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.ticker-item {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.ticker-item::after {
    content: '·';
    color: rgba(255,255,255,.4);
}
/* SECTIONS */
.s {
    padding: 100px var(--pad);
}
.s-inner {
    max-width: var(--max);
    margin: 0 auto;
}
.lbl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.lbl::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--red);
}
.ttl {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px,3.5vw,48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}
.ttl em {
    font-style: normal;
    color: var(--red);
}
.txt {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
}
/* INTRO SPLIT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-img {
    position: relative;
}
.split-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
}
.split-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    padding: 22px 28px;
}
.split-badge strong {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}
.split-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
.split-body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
}
/* VALORES */
.valores-bg {
    background: var(--bg-off);
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    margin-top: 56px;
}
.valor {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 28px;
    transition: background .2s;
}
.valor:hover {
    background: #fff;
}
.valor-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    margin-bottom: 20px;
}
.valor h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}
.valor p {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}
/* DARK STAT BANNER */
.stat-banner {
    background: var(--bg-dark);
    padding: 80px var(--pad);
}
.stat-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
}
.stat-item {
    background: var(--bg-dark);
    padding: 48px 32px;
    text-align: center;
}
.stat-n {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
    display: block;
    margin-bottom: 8px;
}
.stat-n em {
    font-style: normal;
    color: var(--red);
}
.stat-l {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
/* TEAM SECTION */
.team-bg {
    background: #fff;
}
.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.team-card {
    background: #fff;
    padding: 0;
    overflow: hidden;
    transition: .2s;
}
.team-card:hover {
    background: var(--bg-off);
}
.team-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: grayscale(20%);
    display: block;
    transition: filter .3s;
}
.team-card:hover .team-photo {
    filter: grayscale(0%);
}
.team-info {
    padding: 24px 24px 28px;
}
.team-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}
.team-info span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
}
/* CONTACTO */
.s-contact-blk {
    background: var(--bg-dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
    margin-top: 60px;
}
.cdet {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.cdet-ic {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.cdet span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.22);
    display: block;
    margin-bottom: 2px;
}
.cdet p {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    font-weight: 300;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form input, .form textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 14px 18px;
    color: #fff;
    font-family: 'Inter';
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: border-color .2s;
}
.form input:focus, .form textarea:focus {
    border-color: rgba(196,30,30,.5);
    background: rgba(196,30,30,.04);
}
.form input::placeholder, .form textarea::placeholder {
    color: rgba(255,255,255,.2);
}
.form textarea {
    min-height: 130px;
    resize: vertical;
}
/* BTN */
.btn-p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 36px;
    background: var(--red);
    color: #fff;
    border: 1.5px solid var(--red);
    border-radius: 2px;
    text-decoration: none;
    transition: .25s;
    display: inline-block;
    cursor: pointer;
}
.btn-p:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}
/* FOOTER */
footer {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 60px var(--pad) 32px;
}
.foot-inner {
    max-width: var(--max);
    margin: 0 auto;
}
.foot-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.foot-brand img {
    height: 30px;
    filter: brightness(0) invert(.7);
    display: block;
    margin-bottom: 16px;
}
.foot-brand .fb2 {
    font-family: 'Syne';
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    letter-spacing: .04em;
    margin-bottom: 14px;
    display: none;
}
.foot-brand .fb2 em {
    font-style: normal;
    color: var(--red);
}
.foot-brand p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,.28);
    line-height: 1.8;
}
.foot-col h5 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.22);
    margin-bottom: 18px;
}
.foot-col a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,.42);
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s;
}
.foot-col a:hover {
    color: rgba(255,255,255,.8);
}
.fci {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.fci span:first-child {
    color: var(--red);
    font-size: 13px;
    flex-shrink: 0;
}
.fci span:last-child {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(255,255,255,.32);
    line-height: 1.5;
}
.foot-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
}
.foot-bot p {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255,255,255,.18);
}
.foot-li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.1);
    padding: 7px 16px;
    border-radius: 2px;
    transition: .2s;
}
.foot-li:hover {
    color: #fff;
    border-color: rgba(255,255,255,.3);
}
@media(max-width:1024px){
    .split{
        grid-template-columns:1fr;
    }
    .split-img img{
        height:360px;
    }
    .split-badge{
        bottom:0;
        right:0;
    }
    .valores-grid{
        grid-template-columns:1fr 1fr;
    }
    .stat-inner{
        grid-template-columns:1fr 1fr;
    }
    .team-intro{
        grid-template-columns:1fr;
    }
    .team-grid{
        grid-template-columns:1fr 1fr;
    }
    .foot-top{
        grid-template-columns:1fr 1fr;
        gap:36px;
    }
    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
}
@media(max-width:768px){
    .hbg{
        display:flex;
    }
    .nav-right{
        display:none;
    }
    .nav-right.open{
        display:flex;
        flex-direction:column;
        position:fixed;
        inset:0;
        background:rgba(10,10,10,.97);
        justify-content:center;
        align-items:center;
        gap:16px;
        padding-top:72px;
    }
    .nav-right.open a{
        font-size:18px;
    }
    .valores-grid{
        grid-template-columns:1fr;
    }
    .stat-inner{
        grid-template-columns:1fr 1fr;
    }
    .team-grid{
        grid-template-columns:1fr;
    }
    .form-row{
        grid-template-columns:1fr;
    }
    .foot-top{
        grid-template-columns:1fr;
    }
}

.nav-right .has-dd{
    cursor:default;
    position:relative
}
.nav-dd{
    display:none;
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    min-width:230px;
    background:rgba(12,12,12,.98);
    border:1px solid rgba(255,255,255,.08);
    padding:8px 0;
    z-index:300
}
.nav-right .has-dd:hover .nav-dd{
    display:block
}
.nav-dd a{
    display:block;
    padding:9px 18px;
    font-size:11.5px;
    letter-spacing:.06em;
    border:none;
    color:rgba(255,255,255,.52);
    font-weight:500
}
.nav-dd a:hover{
    color:#fff;
    background:rgba(255,255,255,.04)
}