/* --- NOSOTROS VIEW --- */
.nosotros-hero {
    background: linear-gradient(135deg, var(--gigared-red, #e32128) 0%, #a71419 100%);
    padding: 140px 0 120px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nosotros-hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #fff;
}

.nosotros-hero p.lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.purpose-section {
    padding-top: 80px;
    background-color: #fafafa;
    text-align: center;
    position: relative;
}

.purpose-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.purpose-card {
    background: white;
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto 64px;
    border-top: 6px solid var(--gigared-red, #e32128);
    position: relative;
    transform: translateY(-40px);
}

.purpose-card p {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--gigared-blue, #00387a);
    line-height: 1.35;
    margin: 0;
    font-style: italic;
    letter-spacing: -0.01em;
}

.team-section {
    padding: 10px 0;
    background: #fff;
}

.team-section h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: #111;
    letter-spacing: -0.01em;
}

.photo-card {
    margin-bottom: 48px;
    padding: 0 16px;
}

.photo-placeholder {
    background-color: #f1f3f5;
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.photo-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-placeholder:hover img {
    transform: scale(1.03);
}

.photo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.photo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-card ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #495057;
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
}

.photo-card ul li strong {
    color: #111;
}

.photo-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e32128' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-section-nosotros {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gigared-blue, #00387a) 0%, #001f4a 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-nosotros h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta-section-nosotros p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.cta-btn-nosotros {
    background-color: var(--gigared-red, #e32128);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    box-shadow: 0 8px 24px rgba(227, 33, 40, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-btn-nosotros:hover {
    background-color: #fff;
    color: var(--gigared-red, #e32128);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* --- 5. Nosotros Zoom Effect --- */
.photo-card {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-premium);
    background: var(--surface-light);
    transition: var(--transition-smooth);
}

.photo-placeholder {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.photo-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-card:hover .photo-placeholder img {
    transform: scale(1.05);
}

.photo-card h3 {
    padding: 20px 20px 0;
    color: var(--gigared-blue);
}

.photo-card ul {
    padding: 0 20px 20px 40px;
    color: var(--text-muted);
}

