.nosotros-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1560037962-a00331b63f72?q=80&w=2000') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    background-attachment: fixed;
}

.nosotros-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
}

.nosotros-tag {
    font-family: var(--font-main);
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.nosotros-title {
    font-family: var(--font-main);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.85;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

/* Efecto de texto hueco/outline brutalista */
.gold-hollow {
    color: transparent !important;
    -webkit-text-stroke: 1.5px var(--gold);
    letter-spacing: 2px;
}

.nosotros-line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 40px auto;
}

.nosotros-subtitle {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.scroll-indicator-v2 {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.scroll-indicator-v2 span {
    writing-mode: vertical-rl;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-family: var(--font-main);
}

.v-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.identity-section {
    background: var(--dark-bg);
    padding: 100px 5%;
}

.container-pro {
    max-width: 1200px;
    margin: 0 auto;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.id-visual {
    position: relative;
}

.id-image-wrapper {
    border: 1px solid #222;
    padding: 15px;
    background: #050505;
}

.id-image-wrapper img {
    width: 100%;
    filter: grayscale(1);
    transition: var(--smooth);
}

.id-visual:hover img {
    filter: grayscale(0);
}

.section-tag {
    color: var(--gold);
    font-family: var(--font-main);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.id-text h2 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--white);
}

.id-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.id-features {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-section {
    background: var(--dark-bg);
    padding: 120px 0;
    border-top: 1px solid #111;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 80px;
}

.philosophy-title {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pilar-card {
    position: relative;
    background: var(--dark-bg);
    padding: 60px 40px;
    border: 1px solid #1a1a1a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.pilar-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-main);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.03);
    line-height: 1;
    z-index: 1;
    transition: 0.5s ease;
}

.pilar-content {
    position: relative;
    z-index: 2;
}

.pilar-card h3 {
    font-family: var(--font-main);
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pilar-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
}

.pilar-card:hover {
    border-color: var(--gold);
    background: #0c0c0c;
    transform: translateY(-10px);
}

.pilar-card:hover .pilar-num {
    color: rgba(255, 215, 0, 0.08);
    transform: scale(1.1) translateX(-20px);
}

.team-section {
    background: #000;
    padding: 120px 0;
}

.team-header {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    position: relative;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #111;
    border: 1px solid #222;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                filter 0.6s ease;
}

.team-card:hover .team-image-wrapper img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.team-social-mini {
    position: absolute;
    bottom: 20px;
    right: -50px;
    transition: 0.4s ease;
}

.team-card:hover .team-social-mini {
    right: 20px;
}

.team-social-mini a {
    background: var(--gold);
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
}

.team-info {
    margin-top: 25px;
    border-left: 2px solid #1a1a1a;
    padding-left: 20px;
    transition: border-color 0.4s ease;
}

.team-card:hover .team-info {
    border-color: var(--gold);
}

.team-role {
    font-family: var(--font-main);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.team-info h3 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
}

.team-specialty {
    color: #555;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 300;
}

.team-image-wrapper img {
    filter: grayscale(1) brightness(0.7) contrast(1.2);
}

.team-card:hover .team-image-wrapper img {
    filter: grayscale(0) brightness(1) contrast(1);
    transform: scale(1.1) rotate(1deg);
}

.team-info {
    background: linear-gradient(to right, rgba(255,215,0,0.02), transparent);
    padding: 20px;
    border-left: 2px solid var(--gold);
}

/* Efecto de texto hueco dorado */
.gold-hollow {
    color: transparent;
    -webkit-text-stroke: 1px #ffcc00;
    text-transform: uppercase;
}

/* Contenedor de estadísticas */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 0;
}

.stat-box {
    border-left: 2px solid #ffcc00;
    padding-left: 20px;
    margin-bottom: 30px;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Orbitron', sans-serif; /* O tu fuente técnica */
}

.stat-desc {
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}