.nosotros-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 60px 40px 120px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nosotros-header {
    text-align: center;
    margin-bottom: 36px;
    width: 100%;
    max-width: 800px;
}

.back-link {
    display: inline-block;
    margin-bottom: 28px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    letter-spacing: 0.12rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #d4af37;
}

.nosotros-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: #d4af37;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    margin: 0 0 12px;
}

.nosotros-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: rgba(244, 228, 193, 0.6);
    letter-spacing: 0.12rem;
    margin: 0 0 22px;
}

.title-divider {
    width: 200px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 175, 55, 0.8),
        transparent
    );
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.mission-block {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.mission-text {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    color: rgba(244, 228, 193, 0.8);
    line-height: 1.95;
    letter-spacing: 0.02rem;
    margin: 0;
}

.nosotros-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 800px;
}

.nosotros-card {
    background: rgba(12, 12, 35, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-left: 3px solid rgba(212, 175, 55, 0.65);
    border-radius: 4px;
    padding: 28px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-card:hover {
    border-left-color: rgba(255, 215, 0, 0.9);
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.55),
        -3px 0 20px rgba(212, 175, 55, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.card-icon {
    font-size: 0.95rem;
    color: rgba(255, 215, 0, 0.75);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.45);
    flex-shrink: 0;
    line-height: 1;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.card-text {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    color: #f4e4c1;
    line-height: 1.9;
    opacity: 0.88;
    margin: 0;
}

.card-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-list li {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: rgba(244, 228, 193, 0.8);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: rgba(212, 175, 55, 0.65);
    font-size: 0.7rem;
    top: 3px;
}

@media (max-width: 1024px) {
    .nosotros-container {
        padding: 50px 30px 120px;
    }

    .nosotros-title {
        font-size: 2.8rem;
    }

    .nosotros-card {
        padding: 24px 28px;
    }
}

@media (max-width: 768px) {
    .nosotros-container {
        padding: 40px 20px 120px;
    }

    .nosotros-title {
        font-size: 2.2rem;
        letter-spacing: 0.2rem;
    }

    .nosotros-subtitle {
        font-size: 0.75rem;
    }

    .nosotros-header {
        margin-bottom: 28px;
    }

    .mission-text {
        font-size: 0.85rem;
    }

    .nosotros-card {
        padding: 20px 22px;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card-text {
        font-size: 0.82rem;
    }

    .card-list li {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .nosotros-container {
        padding: 30px 15px 100px;
    }

    .nosotros-title {
        font-size: 1.8rem;
        letter-spacing: 0.1rem;
    }

    .nosotros-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.06rem;
    }

    .back-link {
        font-size: 0.78rem;
    }

    .mission-text {
        font-size: 0.8rem;
        line-height: 1.85;
    }

    .nosotros-card {
        padding: 16px 18px;
    }

    .card-title {
        font-size: 0.88rem;
        letter-spacing: 0.08rem;
    }

    .card-text {
        font-size: 0.78rem;
        line-height: 1.8;
    }

    .card-list li {
        font-size: 0.74rem;
    }
}
